
Chapter Markers in a playlist: possible?
I'm trying to add chapter markers with a .vtt file as shown here:
http://www.longtailvideo.com/support/jw-player/35713/adding-chapter-markers/
However, all of the examples that I've seen use a single video file. Is it possible to add chapter markers to a playlist? I'm thinking of something along these lines:
bc.. <script type="text/javascript">
jwplayer("jwplayer").setup({
playlist: [{
image: "Splash/Sports-Olympics-03142014.png",
sources: [{
file: "Manifests/Sports-Olympics-03142014.smil"
},{
file: "Manifests/Sports-Olympics-03142014.m3u8"
}],
tracks: [{
file:'Manifests/Olympics.vtt',
kind:'chapters'
}],
}],
width: 640,
height: 360,
primary: "flash"
});
</script>
I used the sample .vtt file found here, http://www.longtailvideo.com/sites/default/files/bunny-chapters.vtt, but the chapters do not display and I'm wondering if this is because chapters don't work in a playlist.
This is the page that I'm trying this on: http://www.librarymedia.net/Dynamic/Olympics.html
Thanks