是否可以在转换期间进行流式传输? - FFMPEG

发布于 2024-09-07 19:15:28 字数 48 浏览 9 评论 0原文

我想知道是否可以在通过转换生成视频时流式传输视频。

有什么想法吗?

I'm wondering if it is possible to stream video while the video is being generated through conversion.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

困倦 2024-09-14 19:15:29

我们将使用您想要流式传输的 url(无论是 udp 还是 rtmp)作为输出,而不是输出到文件。

要执行这两项操作,您需要使用管道

well use the url you want to stream to (be it udp or rtmp) as output instead to output to a file.

To do both , you ll need to use pipe

荭秂 2024-09-14 19:15:28

假设您的 FFmpeg 副本在 ffmpeg -protocols 列出的协议中包含类似 rtmp 的内容,您应该能够使用 分割视频过滤器。整个命令将类似于:

ffmpeg -i input.mp4 <video options> -filter split rtmp://server[:port][/app] out.mp4

Assuming that your copy of FFmpeg includes something like rtmp amongst the protocols listed with ffmpeg -protocols you should be able to do this using the split video filter. The whole command will look something like:

ffmpeg -i input.mp4 <video options> -filter split rtmp://server[:port][/app] out.mp4
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文