Raspivid保存到磁盘并同时流

时间:2017-03-07 13:56:34

标签: raspberry-pi raspberry-pi2

我正在尝试使用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

1 个答案:

答案 0 :(得分: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命令将输出写入标准输出和指定文件。