Error : No source video was found - Entry in process

When we upload a new video to Kaltura and Kaltura process the video and transcodes this video. After all this process, we load below script to show video in Kaltura player.

let scrTag = ‘’ +
" ”;
postscribe(’#UNIQUE_OBJ_ID’,scrTag);

Here we are passing partnerID which is very well defined.

When this script loads for the first time for newly uploaded video then we are getting error as partnerId is undefined in below request which is made internally by kWidget library.

https://stats.kaltura.com/api_v3/index.php?service=stats&apiVersion=3.1&expiry=86400&clientTag=kwidget%3Av2.59.1&format=1&ignoreNull=1&action=collect&event:eventType=1&event:clientVer=2.59.1&event:currentPoint=0&event:duration=0&event:eventTimestamp=1502374024897&event:isFirstInSession=false&event:objectType=KalturaStatsEvent&event:partnerId=undefined&event:sessionId=f27d7964-7713-cf9b-db55-f39e3b73b09b&event:uiconfId=40011071&event:seek=false&event:entryId=0_nxwofhrs&event:historyEvents=100000000000000000000000-1-1&event:widgetId=_1171362&event:referrer=http%253A%252F%252Flocalhost%253A8080%252Fproject%252FE5E9310E9106709F3066DBD4626EE3E0%252Fassignment%252F0DB9C118B1E5E0207640E8AEB539F97E%252Fdetails&ks=ZGMwODlhOTA4ODIxZTg4N2Y3YWMyNjgzYTAzZDU3NjU5M2YzYjg1MXwxMTcxMzYyOzExNzEzNjI7MTUwMjQxNzIyMzswOzYzNjM3OTkwNjIzNDE3NzE2MTtpcy1kbEB0YXNrc3RyZWFtLmNvbTtzdmlldzowX254d29maHJzOw%3D%3D&kalsig=4ad6b8bf1a8af34633f448ea4419a0cdTZ3azZkOw%3D%3D&kalsig=d967f33853adeb12f1dd36b736894ba7

and on UI part, we are getting message as Error : No source video was found - Entry in process.

Next time if we load this script for same entry id, video plays very well…

Any idea why we are getting this error message and how we can resolve same.

Thanks in Advance.