Page 1 of 1

how to add embedding audio streming into html yawcam page

Posted: Fri Sep 14, 2018 6:10 am
by mfran2002
Hi there,
I'm trying to embed audio streaming into the yawcam html page.

Just going into "settings, edit settings..., stream, page designer..., page text box" I found I can add the code to be embedded, in detail I'm trying using Windows Media Player.

I'm a bit rusty about html and my code is not correctly recognized by the browsers (only IE is ok).

May you please post me the correct code?

Mine is one like this:

<p align="center">
<OBJECT id='mediaPlayer1' width="300" height="90"
classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'
codebase='http://activex.microsoft.com/activex/co ... 5,1,52,701'
standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject'>
<param name='fileName' value="http://myurl:8080">
<param name='animationatStart' value='true'>
<param name='transparentatStart' value='true'>
<param name='autoStart' value="false">
<param name='showControls' value="true">
<param name ="ShowAudioControls"value="true">
<param name="ShowStatusBar" value="true">
<param name='loop' value="false">
<EMBED type='application/x-mplayer2'
pluginspage='http://microsoft.com/windows/mediaplayer/en/download/'
id='mediaPlayer' name='mediaPlayer' displaysize='4' autosize='-1'
bgcolor='darkblue' showcontrols="true" showtracker='-1'
showdisplay='0' showstatusbar='-1' videoborder3d='-1' width="300" height="90"
src="http://myurl:8080" autostart="true" designtimesp='5311' loop="false">
</EMBED>
</OBJECT>
</p>

thank you so much!