I am trying to create a live stream radio website for various radio stations. Many radio stations use RTMP for their live streaming. So I used jwplayer as my default player. However, it doesn't seem to work. Here is my code:
<script type="text/javascript">
jwplayer("container").setup({
flashplayer: "jwplayer.flash",
file: "rtmp://liveRadio.onlinehorizons.net/shabawreada",
height: 270,
width: 480,
autostart: true
});
</script>
I am confused in what to put in the file parameter and if I should use the streamer parameter. The above code does not work.