FFmpeg 图像到视频和流媒体
我有一个实时生成 JPEG 图像的 C# 程序,我需要(连续)从图像生成视频并流式传输(也是实时的)。
我已经使用 ffmpeg 对输入视频源进行转码并对其进行流式传输,ffmpeg 是否可以选择将输入作为一组图像(始终生成)并从中生成视频?
干杯
I've a C# program generating JPEG images in realtime, i need to (continuously) generate a video from the images and stream it (also in realtime).
I've used ffmpeg to transcode an input video source and stream it, doesn't ffmpeg have an option to get the input as a set of images(always being generated) and make the video out of it ?
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上我使用 VLC 进行流媒体......
实际上我刚刚发现我可以:
ffmpeg -f image2 -i img%d.jpg /tmp/a.mpg
但我需要告诉 ffmpeg 继续这样做,我的意思是,如果它找不到另一张图像 ffmpeg 应该等待生成另一张图像。 。 这可能吗 ?
Actually I used VLC for the streaming....
Actually I just found at that I could:
ffmpeg -f image2 -i img%d.jpg /tmp/a.mpg
But i need to tell ffmpeg to keep doing it, I mean, if it doesn't find another image ffmpeg should wait for another one to be generated... is this possible ?