次のコマンドは ./images にあるシーケンス画像を繋げてsound.mp3をオーディオに設定し30fpsのmp4(H.264)に変換しています。
1 |
ffmpeg.exe -framerate 30 -i ./images/%d.png -i sound.mp3 -vcodec libx264 -pix_fmt yuv420p -c:a aac -strict experimental -shortest -r 30 output.mp4 |
参考: https://stackoverflow.com/questions/13824045/ffmpeg-join-images-and-audio-to-result-video
コメントを残す