录制有损视频流
我正在尝试将实时视频流录制到文件中。
我尝试使用 VLC
使用
vlc {INPUT} --sout '#std{access=file,mux=ts,dst=file.mp4}'
我尝试使用 ffmpeg
使用
ffmpeg {INPUT} -vcodec 复制 -acodec 复制文件.mp4
两条记录都很好,但源往往会失去连接 1-2 秒,然后记录就停止了 >.<给我留下了一半的录音:(
我想要继续录音,并且录音应用程序尝试重新连接。
您有什么建议?
I'm trying to record live video stream to a file.
I tried with VLC
using
vlc {INPUT} --sout '#std{access=file,mux=ts,dst=file.mp4}'
I tried with ffmpeg
using
ffmpeg {INPUT} -vcodec copy -acodec copy file.mp4
Both records just fine, but the source tends to loose connection for 1-2seconds, and then recording just stops >.< leaving me with half finished recording :(
I want the recording to continue, and the recording app try to reconnect.
What can you recommend?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,我自己找到了解决方案。
如果我将 VLC 设置为循环并指示它附加文件,它会重新连接到流并继续录制(连接丢失时不会出现黑色视频)
命令是:
Ok I've found a solution myself.
If I set VLC on loop and instruct it to append the file, it reconnects to the stream and continue recording (no black video while connection is lost tho)
the command is:
来源是什么,为什么失去连接?如果无法避免,请创建某种“重新连接器”并在每次连接中断时使用它。然后,您将获得视频片段。稍后,将这些碎片粘在一起......
What is the source, why it is losing connection? If you can't avoid it, create some kind of 'reconnector' and use it every time connection breaks. Then, you'll have pieces of video. Later, glue that pieces together...