如何使用ffmpeg使用单张图像(image1.png)以特定分辨率播放15秒钟的影片,因此当我播放视频时,该图像将在屏幕上显示15秒钟。
Answers:
ffmpeg -loop 1 -i image.png -c:v libx264 -t 15 -pix_fmt yuv420p -vf scale=320:240 out.mp4
确保使用实际的ffmpeg版本,例如http://johnvansickle.com/ffmpeg/
ffmpeg -loop 1 -i image.png -t 5 out.mp4
Unable to find a suitable output format for 'scale=1280:1024' scale=1280:1024: Invalid argument
知道为什么吗?