I have a machine using vlc to serve video across my lan. right now I can use vlc to view the stream from any computer on the lan, but I need to get this working on a webpage, so I'm trying to figure out how to embed the video object into the html. I have a couple questions:
Do I need to use an sdp file for this? My streaming protocol is http.
Or should I be using the virtual streaming file?
Here is a code snippet I have tried so far which is not working:
<OBJECT
CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"
CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab"
WIDTH="352" HEIGHT="240" >
<PARAM NAME="src" VALUE="http://192.168.0.33:8080/stream">
<PARAM NAME="autoplay" VALUE="true" >
<EMBED SRC="QTMimeType.pntg" TYPE="image/x-macpaint"
PLUGINSPAGE="http://www.apple.com/quicktime/download"
QTSRC="http://192.168.254.33:8080/stream" WIDTH="352" HEIGHT="240"
AUTOPLAY="true" >
</EMBED>
</OBJECT>
My codec is mjpeg, and my encapsultation is mp4.
Thanks!!