
Playlists for both RTMP and progressive MP4 streaming ?
I cannot find any information regarding how to set this up in the JWplayer documentation.
I have 10 videos and serve them in RTMP and progressive MP4.
bc.. var player = jwplayer("container").setup({
playlist: [{
image: "my_image.jpg",
sources: [{
file: "rtmp://myserver.com/mp4:clips/video001.mp4?audioIndex=0"
},{
file: "http://myserver.com:1935/somepath/mp4:clips/video001.mp4/playlist.m3u8?audioIndex=0"
}]
}],
So with the above code basically I need to add 9 more videos for both RTMP and progressive.
What is the way to do this?