录制有损视频流

发布于 2024-11-19 17:04:45 字数 383 浏览 2 评论 0原文

我正在尝试将实时视频流录制到文件中。

我尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乖乖兔^ω^ 2024-11-26 17:04:45

好吧,我自己找到了解决方案。

如果我将 VLC 设置为循环并指示它附加文件,它会重新连接到流并继续录制(连接丢失时不会出现黑色视频)

命令是:

cvlc {INPUT} --loop --sout '#std{access=file{append},mux=ts,dst=file.mp4}'

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:

cvlc {INPUT} --loop --sout '#std{access=file{append},mux=ts,dst=file.mp4}'
刘备忘录 2024-11-26 17:04:45

来源是什么,为什么失去连接?如果无法避免,请创建某种“重新连接器”并在每次连接中断时使用它。然后,您将获得视频片段。稍后,将这些碎片粘在一起......

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...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文