Reputation: 1781
Thanks in Advance this is my first project where i suppose to do live streaming so i have decided to use red5 live streaming with Adobe Flash Media Live Encoder
i have rtmp url and also Adobe Flash Media Live Encoder installed and connected with the rtmp server.
i have written the following just for testing that it is working or not..but it is not working..
<script type='text/javascript' src='jwplayer.js'></script>
<div id='mediaspace'>This text will be replaced</div>
<script type='text/javascript'>
'jwplayer('mediaspace').setup({
'flashplayer': 'jwplayer/player.swf',
'file': 'livestream.flv',
'streamer': 'rtmp://70.38.1.234:1935/celebritysecrets',
'controlbar': 'bottom',
'width': '470',
'height': '290'
});
</script>
but nothing is displayed ... please help me...
Upvotes: 1
Views: 2367
Reputation: 68446
Your RTMP
URL is not working. Try testing your RTMP
URL here in this link.
Upvotes: 1