Questions tagged «slideshow»

4
如何使用FFmpeg从图像创建视频?
ffmpeg -r 1/5 -start_number 2 -i img%03d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4 这行工作正常,但我想从另一个文件夹中的图像创建视频文件。我的文件夹中的图像名称为: img001.jpg img002.jpg img003.jpg ... 如何输入其他文件夹中的图像文件?例:C:\mypics 我尝试了此命令,但只ffmpeg生成了带有第一个图像(img001.jpg)的视频。 ffmpeg -r 1/5 -start_number 0 -i C:\myimages\img%03d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4
163 image  ffmpeg  slideshow 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.