Audio stream not working in Google

Closed
Lancelot - Dec 2, 2015 at 04:11 PM
 Blocked Profile - Dec 2, 2015 at 05:25 PM
Hello,

I have this code in Zyro but the stream works in the internet explorer but not working in Google


<embed type="application/x-mplayer2"
pluginspage=http://www.microsoft.com/Windows/MediaPlayer/
src="http://50.22.218.73:29938" showstatusbar="1" showtracker="0" displaysize="1"
autosize="0" showcontrols="1" animationatstart="0" transparentatstart="0"
autostart="1" width="300" height="65"></embed>

Where is the error????? HELP
Related:

1 response

Blocked Profile
Dec 2, 2015 at 05:25 PM
The error is, you are calling on a MS plugin (Media PLayer) into a Chrome browser.

Can you use the HTML5 Standard?

<audio controls>
  <source src="http://50.22.218.73:29938" type="audio/ogg">
Your browser is not an html5 browser!
</audio>


I have said it once, I will say it again. IT!
1