I had included this in a previous post about not getting onStart events, but this one is the killer and I thought I'd put it in a separate thread.
I have a number of live RTMP threads I'd like to monitor. If I put them in a playlist as shown below, the first one starts up, hits the 20 second duration and just keeps on going. The second and subsequent ones never play.
What have I got wrong, or does duration even work with live RTMP?
I have a number of live RTMP threads I'd like to monitor. If I put them in a playlist as shown below, the first one starts up, hits the 20 second duration and just keeps on going. The second and subsequent ones never play.
What have I got wrong, or does duration even work with live RTMP?
clip: {
netConnectionUrl: 'rtmp://aspecialserver.tld/live',
live: true,
duration: 20,
autoplay: true,
provider: 'rtmp',
},
playlist: [
{ url: 'stream17@17776' },
{ url: 'stream18@17777' },
{ url: 'stream19@17778' },
{ url: 'stream20@17779' },
{ url: 'stream21@17780' }
],
plugins: {
rtmp: {
url: 'flowplayer.rtmp-3.1.3.swf',
subscribe: true
}
}