I have the following set up for a simple rtmp stream test:
When I hit pause on the player and then play, the stream does not continue to play. Where can I find more info on getting the player to connect back to the stream after a user hits pause?
<a
href="/flowplayer/flowplayer.flv"
style="display:block;width:500px;height:375px"
id="cam3">
</a>
<!-- this will install flowplayer inside previous A- tag. -->
<script type="text/javascript">
flowplayer("cam3", "/flowplayer/flowplayer-3.1.5.swf",
{
clip: {
url: 'camera3',
live: true,
provider: 'rtmp'
},
plugins: {
rtmp: {
url: '/flowplayer/flowplayer.rtmp-3.1.3.swf',
netConnectionUrl: 'rtmp://server.host/live'
}
}
}
);
</script>
When I hit pause on the player and then play, the stream does not continue to play. Where can I find more info on getting the player to connect back to the stream after a user hits pause?