Hi guys,
I'm trying the same thing. The question is: Where and how I put the code in the HTML. I'm not an expert, but I studied HTML and wrote a code. It works in get the streaming, but I'm in doubt in where and how I put bar graph code to show the audio over the video. Below a part of my code that works in get the video stream.
Code: Select all
<html>
<head>
<title>STREAMING</title>
</head>
<body SCROLL=NO bgcolor="black">
<table align="center" border="0">
<tr align="center" >
<td valign="center"><font size="5" color="white">STREAM 1</font></td>
<td valign="center"><font size="5" color="white">STREAM 2</font></td>
</tr>
<tr align="center">
<td align="center" height="425" width="600">
<embed type="application/x-vlc-plugin" pluginspage="http://www.videolan.org" version="VideoLAN.VLCPlugin.2" width="100%" height="100%" id="vlc" loop="yes" autoplay="yes" target="mms://IP_STREAM:8080/"></embed>
<param name="AutoStart" value="true" />
</param>
<param name="mute" value="true" />
</param>
<param name="EnableContextMenu" value="1" />
</param>
<param name="TransparentAtStart" value="false" />
</param>
<param name="AnimationatStart" value="false" />
</param>
<param name="ShowControls" value="false" />
</param>
<param name="ShowDisplay" value="false" />
</param>
<param name="ShowStatusBar" value="false" />
</param>
<param name="autoSize" value="false" />
</param>
<param name="displaySize" value="true" />
</param>
</td>
<td>....
</td>
...
</html>
Best regards.