是否可以在转换期间进行流式传输? - FFMPEG
我想知道是否可以在通过转换生成视频时流式传输视频。
有什么想法吗?
I'm wondering if it is possible to stream video while the video is being generated through conversion.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们将使用您想要流式传输的 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
假设您的 FFmpeg 副本在
ffmpeg -protocols
列出的协议中包含类似rtmp
的内容,您应该能够使用分割
视频过滤器。整个命令将类似于:Assuming that your copy of FFmpeg includes something like
rtmp
amongst the protocols listed withffmpeg -protocols
you should be able to do this using thesplit
video filter. The whole command will look something like: