Two problems. First, I don't seem to get any onStart clip events. This is minor, but perhaps I'm crazy.
Second, and this is major: I'm trying to monitor a number of live RTMP feeds and if I put them in a playlist with a duration, the first plays, hits the duration and just keeps on going. The second (and later) streams never come up. Here's a snippet of the code:
Any ideas?
Second, and this is major: I'm trying to monitor a number of live RTMP feeds and if I put them in a playlist with a duration, the first plays, hits the duration and just keeps on going. The second (and later) streams never come up. Here's a snippet of the code:
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
}
}
Any ideas?