Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想制作不同格式的视频帧,如 .doc、.pdf 和图像。是否可以?
我在下面找到了命令。ffmpeg -f image2 -i img%d.jpg /tmp/a.mpg
但这将使用多个图像创建。我需要带有单个图像的视频。
任何建议。
这对你有用吗?
ffmpeg -y -r 24 -loop_input -vframes 240 -i img.jpg test.mpg
它应该从单个输入帧以 24fps 的速度创建 10 秒 mpg。