Working through the basic set of newbie issues... got media ingestion working. I can see the video through other players using the Kaltura issued video ID. So, I know I've got that right. The partner ID should be correct.
But, using an HTML page on our site:
http://media.becausefoundation.org/kalt ... ltura.html
- Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>Kaltura Test Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="swfobject.js"></script>
</head>
<body>
<h1>Kaltura Test Page</h1>
<div id="kplayer"></div>
<script type="text/javascript">
var params = {
allowscriptaccess: "always",
allownetworking: "all",
allowfullscreen: "true",
wmode: "opaque"
};
var flashVars = {
entryId: "16ypwkiz2a"
};
swfobject.embedSWF("http://www.kaltura.com/kwidget/wid/_{26954}", "kplayer", "400", "360", "9.0.0", false, flashVars, params);
</script>
<p>This is a test page for the Kaltura Video Player</p>
</body>
</html>
I get no visible player.
I can see that the replacement of the div content is happening. If you put content inside the div it will not appear. So, it would appear that the call embedSWF is happening.
I tried both local swfobject and google hosted swfobject. Note, the current HTML shows a local reference to swfobject.
I also tried various browsers just to make sure this wasn't some browser joy.
Thanks,
Smallhands
