"Media Not Found" error while pointing KDP to a local kaltura instance

2 replies [Last post]
Joined: 10/26/2009
Points: 2

Hello,

I have installed latest KalturaCE edition on a local Ubuntu OS. KMC is up and running successfully. I am able to upload the video and use "Preview & Embed" functionality.

I am trying to use KDP widget sample code to point to this local instance, but when i clicked the play button, it gives me the following error "Media Not Found, Sorry clip not found". The flashvars used are as given below, kindly let me know how to fix this issue.

var flashvars = {};

flashvars.autoPlay = "false";

//flashvars.entryId = "http://cdn.kaltura.org/apis/html5lib/kplayer-examples/media/bbb.flv";

//flashvars.sourceType = "url";

flashvars.entryId = "0_zhbzxf8n";

flashvars.sourceType = "entryId";

flashvars.debugMode = "false";

flashvars.fileSystemMode = "true";

flashvars.widgetId = "_100";

flashvars.partnerId = "100";

flashvars.uiConfId = 48130;

flashvars.streamerType = "http";

//flashvars.pluginDomain = "plugins/";

//flashvars.kml = "local";

//flashvars.kmlPath = "config.xml";

flashvars.host = "kalturatest.localhost.com";

//flashvars.cdnHost = "cdn.kaltura.com";

flashvars.externalInterfaceDisabled = "false";

var params = {};

params.quality = "best";

params.wmode = "opaque";

params.allowfullscreen = "true";

params.allowscriptaccess = "always";

var attributes = {};

attributes.id = "kdp3";

attributes.name = "kdp3";

attributes.styleclass = "player";

swfobject.embedSWF("kdp3.swf", "kdp3", "570", "380", "10.0.0", "jslib/expressInstall.swf", flashvars, params, attributes);

Thanks & Regards,
Vivek M

Joined: 05/06/2009
Points: 29

I had a similar issue on ubuntu, but when i tested on windows and mac, there was no problem. I think it may be an issue with linux debug flash player

Joined: 01/04/2011
Points: 16

An example fo my embed:

"src", "kdp3",
"width", "720",
"height", "620",
"align", "middle",
"id", "visualDemoPlugin",
"quality", "high",
"bgcolor", "#869ca7",
"name", "visualDemoPlugin",
"allowScriptAccess","sameDomain",
"allowFullScreen","true",
"type", "application/x-shockwave-flash",
"flashvars","sourceType=entryId"+
"&host=myKalturaInstance"+
"&autoPlay=false"+
"&cdnHost=myKalturaInstance"+
"&entryId=0_sifhppga"+ // 30 sec movie
"&clientTag=cache_st:1295874945"+
"&playlistAPI.kpl0Name=demo playlist"+ "&playlistAPI.kpl0Url=http%3A%2F%2Fkaltura%2Findex.php%2Fpartnerservices2%2Fexecuteplaylist%3Fuid%3D%26partner_id%3D103%26subp_id%3D10300%26format%3D8%26ks%3D%7Bks%7D%26playlist_id%3D0_56ag4bx2"+
"&debugMode=false"+
"&fileSystemMode=true"+
"&uiConfId=1727910"+
"&widgetId=_103"+
"&partnerId=103"+
"&subpId=10300"+
"&pluginDomain="+
"&kml=local"+
"&externalInterfaceDisabled=false"+
"&referer=http://myKalturaInstance/demo/"+
"&playerBgColor=0x010101",
"pluginspage", "http://www.adobe.com/go/getflashplayer"

I am running Kaltura on Fedora 13 inside a virtual box and mapped the ip to myKalturaInstance. When calling it with windows, either using the browser or by testing the kdp3 flex project, it works fine with the above embed.

Oscar