###################### # stream files from PC to Box on AON-TV channel (mpg2 @3mbit, mpa @196kb, 25fps) "C:\Program Files\VideoLAN 9\vlc.exe" --sout "#transcode{vcodec=mp2v,vb=3072,scale=1,acodec=mpga,ab=196,channels=2,fps=25.000}:duplicate{dst=display,dst=std{access=udp,mux=ts,dst=239.0.2.100:8208}}" # some video files will crush vlc - mostly of AC3 sound, try this "C:\Program Files\VideoLAN 9\vlc.exe" --sout "#transcode{vcodec=mp2v,vb=3072,scale=1,ab=256,fps=25.000}:duplicate{dst=display,dst=std{access=udp,mux=ts,dst=239.0.2.100:8208}}" # stream DVDs from PC to Box with higher bitrate (mpg2 @9mbit) "C:\Program Files\VideoLAN 9\vlc.exe" --sout "#transcode{vcodec=mp2v,vb=9216,scale=1}:duplicate{dst=display,dst=std{access=udp,mux=ts,dst=239.0.2.100:8208}}" # stream TV from Box to PC (zoom to half, deinterlace, color-fix, timeshift) "C:\Program Files\VideoLAN 9\vlc.exe" "C:\Users\andi\Downloads\Senderliste_2008-08.m3u" --zoom=0.5 --access-filter=timeshift --timeshift-granularity=200 --video-filter="adjust{saturation=1.4,contrast=1.2}:sharpen{sigma=0.15}:deinterlace{linear}" ###################### # stream from Box to Network (mpg4 @2mbit, mp3 @128kb, 75% scale) "C:\Program Files\VideoLAN 9\vlc.exe" "C:\Users\andi\Downloads\Senderliste_2008-08.m3u" --sout="#transcode{vcodec=mp4v,vb=2048,scale=0.75,acodec=mp3,ab=128,channels=2}:duplicate{dst=display,dst=std{access=udp,mux=ts,dst=localhost:8208}}" # client for stream server above (zoom to half, deinterlace, color-fix, timeshift) "C:\Program Files\VideoLAN 9\vlc.exe" udp://@10.0.0.2:8208 --zoom=0.5 --access-filter=timeshift --timeshift-granularity=100 --video-filter="adjust{saturation=1.4,contrast=1.1}:sharpen{sigma=0.15}:deinterlace{linear}" ###################### # stream from Box to Internet (mpg4 @600kb, mp3 @96kb, 75% scale) "C:\Program Files\VideoLAN 9\vlc.exe" "C:\Users\andi\Downloads\Senderliste_2008-08.m3u" --sout="#transcode{vcodec=mp4v,vb=600,scale=0.75,acodec=mp3,ab=96,channels=2}:duplicate{dst=display,dst=std{access=http,mux=ts,dst:localhost:8080}}" # client for stream server above (zoom to half, deinterlace, color-fix, timeshift) "C:\Program Files\VideoLAN 9\vlc.exe" http://pauschi.dyndns.org:8080 --access-filter=timeshift --timeshift-granularity=100 --video-filter="adjust{saturation=1.4,contrast=1.2}:sharpen{sigma=0.15}:deinterlace{linear}" ###################### # VLC Download http://www.videolan.org/ # VLC Commandline Parameter http://www.videolan.org/doc/vlc-user-guide/en/ch02.html http://www.videolan.org/doc/play-howto/en/ch04.html#id308922 http://wiki.videolan.org/Documentation:Modules