
setting time references for a file within a playlist
I am trying to create a playlist where each entry jumps to a time within an mp4. Kind of a playlist/chapters/table of contents.
I am having very limited success but no consistency. For example, if I jump between different files, the start tag works, but jumping within the same file it does not.
I have tried double-starts but that doesnt work either.
Here's my code:
Playlist demo (3).
<div id="container4"></div>
<script type="text/javascript">
jwplayer("container4").setup({
volume:25,
playlist: [{
image: "/doggie.jpg", file:
"rtmp://1226.ondemand.netbroadcasting.tv/1226/FighterPilot450k.mp4",
start:10, title: "Fighter Pilot - 10 sec."
},{
file: "", title: "nada"
},{
image: "/doggie.jpg", file:
"rtmp://1226.ondemand.netbroadcasting.tv/1226/FighterPilot450k.mp4",
start:0, start:120, title: "Fighter Pilot - 2 min."
},{
image: "/doggie.jpg", file:
"rtmp://1226.ondemand.netbroadcasting.tv/1226/BAD16c.mp4", start:60,
title: "BrooksFest"
},{
image: "/thumb.jpg", file:
"rtmp://draco.streamingwizard.com:1935/wizard/_definst_/demo/sample.mp4"
, start:30, title: "Big Buck Bunny"
}],
height: 448,
width: 868,
listbar: {
position: 'right',
size: 260
},
});
</script>
What I (will) have is a meeting where I want to jump to identified (named) discussions. I prefer not breaking the original files into sections, which is an alternative.
I'm pretty new at this so simplicity and/or a god explanation is appreciated.
Thank you