Hello guys!
I have installed broadwave as an audio streaming server and I have then embedded media player on a web page pointing to the stream. But now media player only captures a certain amount of streaming data and plays it over and over. I want it to play the live broadcast as it is (to keep updating the buffer) not just to play what it has buffered. How do I do it? This is the code i have used:
Code:
<object width="320" height="70"
classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"
id="mediaplayer1">
<param name="Filename" value="http://196.202.240.23:85/broadwave.m3u?src=1&kbps=16">
<param name="AutoStart" value="True">
<param name="ShowControls" value="True">
<param name="ShowStatusBar" value="True">
<param name="ShowDisplay" value="False">
<param name="AutoRewind" value="False">
<embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/MediaPlayer/" width="320" height="70" src="http://196.202.240.23:85/broadwave.m3u?src=1&kbps=16" filename="http://196.202.240.23:85/broadwave.m3u?src=1&kbps=16" autostart="True" showcontrols="True" showstatusbar="True" showdisplay="False" autorewind="False"></embed>
</object>
where the text in blue is the link to my streaming server. It captures the stream, alright, but only plays what it has buffered.