Question:VOD on HTTP protocol using VLM
Posted: 25 Jan 2006 01:59
Hello,
I am new to VLM/VLC, I'd appreciate for your pointers. In the documenation (chapter 5 - VLM), it presents an example using:
server side:
client side:
I am wondering how to achieve the same (VLM streaming) on HTTP protocol, so that the client may use command as
.
Further, suppose I embed a media player (e.g., WMP) in HTML, and fetch video/audio from the VLM server, what should be the syntax? Is it something like:
Btw, I am using Window XP. Thanks!
I am new to VLM/VLC, I'd appreciate for your pointers. In the documenation (chapter 5 - VLM), it presents an example using:
server side:
Code: Select all
vlc --ttl 12 -vvv --color -I telnet --telnet-password videolan --rtsp-host 0.0.0.0:5554
Code: Select all
vlc rtsp://server:5554/Test
Code: Select all
vlc http://server:5554/Test
Further, suppose I embed a media player (e.g., WMP) in HTML, and fetch video/audio from the VLM server, what should be the syntax? Is it something like:
Code: Select all
<OBJECT ....>
<PARAM name="fileName" value="http://server:5554/Test">
...
</OBJECT>