Can't get Playlist Configuration Start Option working (Projekktor Core)

by lawiebe, Thursday, August 16, 2012, 17:13 (308 days ago)

Hi All,

I am new to projekktor and very green at the whole web video area. I am trying to play a MP4 video (HD 1080i 827sec) starting at a specific location in the video. I am using Windows XP SP3 and IE8. I have the video playing with the following code, but the start: parameter in the playlist does not seem to do anything. I realize the start: function is experimental, but wondoering if there is a way to get it to work. The video istself is sitting internally on our network on a web server runing IIS 5.0.

Thanks, Larry

<!DOCTYPE HTML>
<html>
<head>
<title>Projekktor - demo</title>

<!-- Load player theme -->
<link rel="stylesheet" href="theme/style.css" type="text/css" media="screen" />

<!-- Load jquery -->
<script type="text/javascript" src="jquery.min.js"></script>

<!-- load projekktor -->
<script type="text/javascript" src="projekktor.min.js"></script>

</head>
<body>

<div id="player_a" class="projekktor"></div>
<script type="text/javascript">
$(document).ready(function() {
var player = projekktor('.projekktor', {
width: 640,
height: 433,
controls: true,
playlist: [
{
0: {src:'http://wpg-apps-23/videoindex/larry.mp4', type:"video/mp4"},
config:{
duration: 827,
start: 22 }
}
]
});
})
</script>

</body>
</html>

  461 views

Complete thread:

 RSS Feed of thread