Hi,
From 1 PC to 1 STB ? I'm noob and all that is in streaming how to, but I guess you can do it with UDP :
Code: Select all
"D:\Program Files\VideoLAN\VLC\vlc" -vvv "g:\files\The one.mp4" --sout "#transcode{vcodec=mp2v,acodec=mpga,vb=800,ab=128,width=640,height=480}:duplicate{dst=display,dst=std{access=udp,mux=ts,dst=192.168.1.11:1234}}"
where 192.168.1.11 is STB address.
or just :
Code: Select all
"D:\Program Files\VideoLAN\VLC\vlc" -vvv "g:\files\The one.mp4" --sout "#transcode{vcodec=mp2v,acodec=mpga,vb=800,ab=128,width=640,height=480}:standa
rd{access=udp,mux=ts,dst=192.168.1.11:1234}"
if you don't want or don't need to have a display control on VLC server
Then you load or refresh some web page from STB browser :
Code: Select all
<HTML><HEAD><TITLE>Amino Play Page</TITLE>
<aminoattr tcr="#00ff00"/>
</HEAD>
<BODY bgcolor="#00ff00" text="#ffffff">
<amino fgalpha="5">
<script language="javascript">
VideoDisplay.SetAlphaLevel(0);
AVMedia.Play('src=udp://192.168.1.10:1234');
</script>
</BODY>
</html>
Where 192.168.1.10 is your VLC server address.
Details, depends of your configuration. Do you have an IR keyboard for your A110 ? Do you use DHCP on your network ? Is it a LAN ? Do you have a dhcpd, a router, a web server ? Is your VLC on Linux, Windows or something else ?