2017-03-07 96 views
1

我試圖運行使用樹莓派B型Raspivid保存到磁盤,並同時流

我要救流本地文件(USB如果可能的話),並流,所以我可以選擇一個家庭安全攝像頭這在我的網絡上

我有的命令不適用於兩個 - 任何建議?

raspivid-o security.h264 -t 0 -n -w 600 -h 400 -fps 12 | cvlc -vvv stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/}' :demux=h264 

回答

1

試試這個命令:

raspivid -o - -t 0 -n -w 600 -h 400 -fps 12 | tee security.h264 | cvlc -vvv stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/}' :demux=h264 

tee命令輸出寫到標準輸出,併到指定的文件。