2024年7月4日木曜日

<サイズ変更>


ffmpeg -i in.mp4 -s 1280x720 out.mp4

<静止画に音声をつける>

 ffmpeg -loop 1 -i sample.jpg -i sample.mp3 -vcodec libx264 -acodec aac -ab 160k -ac 2 -ar 48000 -pix_fmt yuv420p -shortest output.mp4

<再生速度の変更>


<2倍速>

ffmpeg -i input.mp4 -vf setpts=PTS/2 -af atempo=2 output_slow.mp4

<.5倍速>

ffmpeg -i input.mp4 -vf setpts=PTS*2 -af atempo=0.5 output_slow.mp4

<長さトリミング>


ffmpeg  -ss 00:02:00 -to 00:08:00  -i input.mp4 -c copy output.mp4

<動画に音声を重ねる>


ffmpeg -i video.mp4 -i audio.wav -c:v copy -c:a aac -map 0:v:0 -map 1:a:0 output.mp4

2024年7月2日火曜日

<複数の動画を一つにまとめる>

ffmpeg -f concat -i mylist.txt -c copy output.mp4

mylist.txtには、次のようにファイルのリストを記述する。

file file1.mp4
file file2.mp4
file file3.mp4
file file4.mp4