我正在尝试使用Rasberry Pi Model B运行家庭安全摄像头
我想将流保存到本地文件(如果可能的话,使用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发布于 2017-07-13 21:01:30
尝试执行以下命令:
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=h264tee命令将输出写入标准输出和指定的文件。
https://stackoverflow.com/questions/42650209
复制相似问题