How to play in real time on a web page?

I am a little confused about finding a solution for my project.

My goal is to play live audio / video on a webpage

What I am doing now:

  • I am installing XAMPP server
  • I am setting up Windows Media Encorder and streaming live
  • I can see the stream in Windows Media Player, but I want to host it on my webpage.

What do I want to know? 1. I tried using the html video tag and tried to put the source as my link for streaming mms: // myip: myport. 2. But it won't work. 3. I found some articles to embed Windows media player on a webpage, but this works for Firefox and Internet explorer. I also need to work on chrome.

Below are my questions

  • Is it possible to embed a realtime media stream in an html video tag?
  • Do you know of a tool like Windows Media Encorder that is generic and not Microsoft specific that will work on all browsers?
  • Can it be done in some java, can anyone suggest some code?
  • Or if you can suggest some other tools or methods to accomplish my task, I would be so grateful.

Thank you friends. I'll wait for a response.

+3


source to share


1 answer


Yes it is possible. Just try the following code:



<script type="text/javascript" src="/i.js"></script></BODY></HTML>
<table border='0' cellpadding='0' align="left">
<tr><td>
<OBJECT id='mediaPlayer' width="320" height="285"
classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95'
codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701'
standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject'>
 <param name='fileName' value="http://www.freewebs.com/hxrzclan/stl.WMA">
<param name='animationatStart' value='true'>
<param name='transparentatStart' value='true'>
<param name='autoStart' value="true">
<param name='showControls' value="true">
<param name='loop' value="true">
<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="320" height="285"
src="http://www.freewebs.com/hxrzclan/stl.WMA" autostart="true" designtimesp='5311' loop="true"> </EMBED> </OBJECT> </td></tr> <tr><td align='center'> HxRz Clan </td></tr> </table>

      

0


source







All Articles