網頁

2016年1月27日 星期三

VLC command

vlc.exe --help
vlc.exe --intf="telnet"
vlc.exe --intf="http"
vlc.exe --intf="dummy"

除圖形介面外,額外使用 telnet 介面
vlc.exe --extraintf="telnet"

產生訊息
-vvv

產生訊息於檔案
--verbose=2 --file-logging --logfile=vlc-log.txt

網路 caching 5秒
--network-caching=5000

vlc.exe --intf="telnet" --telnet-host="0.0.0.0" --telnet-port="4212" --telnet-password="1234" --verbose=2 --file-logging --logfile=vlc-log.txt

vlc.exe --extraintf="http" --http-host="127.0.0.1:9090"

使用本機的 webcam
vlc.exe -vvv dshow:// --dshow-vdev="Integrated Camera"

螢幕錄影
vlc.exe screen:// --screen-fps=24 --screen-follow-mouse --screen-mouse-image="Mouse_pointer_small.png" --sout "#transcode{vcodec=h264,venc=x264{scenecut=100,bframes=0,keyint=10},vb=1024,scale=1,vfilter=croppadd{cropleft=0,croptop=0,cropright=0,cropbottom=0}}:duplicate{dst=std{access=file,mux=mp4,dst="R:\Temp\aaa.mp4"}}"

不顯示影像
vlc.exe rtsp://169.254.1.168:554/live2.sdp --sout "#duplicate{dst=display,select='novideo'}" --verbose=2 --file-logging --logfile=vlc-log.txt

不顯示控制介面,使用telnet控制,並且延遲5秒
vlc.exe rtsp://169.254.1.168:554/live2.sdp --network-caching=5000 --vout dummy --intf telnet --telnet-host="0.0.0.0" --telnet-port="4212" --telnet-password="1234" --verbose=2 --file-logging --logfile=vlc-log.txt

顯示時間
vlc.exe rtsp://169.254.1.168:554/live2.sdp --sub-source "marq{marquee=%Y/%m/%d %H:%M:%S,x=10,y=50}"
vlc.exe rtsp://169.254.1.168:554/live2.sdp --sub-filter "marq{marquee=%Y/%m/%d %H:%M:%S,position=6}"

vlc.exe rtsp://169.254.1.168:554/live2.sdp --sout file/avi:"R:\temp\aaa.avi"
vlc.exe rtsp://169.254.1.168:554/live2.sdp --sout="#std{access=file,mux=avi,dst='R:\temp\aaa.avi'}"
vlc.exe rtsp://169.254.1.168:554/live2.sdp --intf dummy --sout file/avi:"R:\temp\aaa.avi"
vlc.exe rtsp://169.254.1.168:554/live2.sdp --snapshot-path="R:\temp" --snapshot-prefix="aaa" --snapshot-format=jpg --intf="telnet" --telnet-host="0.0.0.0" --telnet-port="4212" --telnet-password="1234" --sout file/avi:"R:\temp\aaa.avi" -vvv --file-logging --logfile=vlc-log.txt

VLC 設定檔

C:\Users\UserName\AppData\Roaming\vlc\vlcrc


new ch1 broadcast enabled
setup ch1 input screen:// :screen-fps=24 :screen-follow-mouse 
setup ch1 input rtsp://169.254.1.168:554/live2.sdp
setup ch1 output #file{mux=ps,dst='R:\temp\aaa.ps'}
setup ch1 output #file{mux=avi,dst='R:\temp\aaa.avi'}
control ch1 play
snapshot
control ch1 stop

shutdown

沒有留言:

張貼留言