4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ffmpeg コマンド例メモ

Last updated at Posted at 2018-08-17

■サイズを小さくして、10fpsにする
ffmpeg -i input.mp4 -s 256x144 -r 10 output.mp4

■-ab ビットレート、-ac 音声チャンネル数、-ar 音声サンプリングレート
-ar 12000 -ac 1 -ab 32k

■最初から290秒までをカットする
ffmpeg -ss 290 -i example.mp4 -vcodec copy -acodec copy example_edited.mp4

■最初から10分(600秒)だけを残して後はカットする
ffmpeg -ss 0 -i example.mp4 -vcodec copy -acodec copy -t 600 example_10min.mp4

■音量調査
ffmpeg -i filename.mov -vn -af volumedetect -f null -

■音量調整
ffmpeg -i input.mov -af volume=10dB output.mov

■映像にBGMをつける
ffmpeg -i input1.mov -i input2.mp3 -c:v copy -c:a aac output.mp4

■音声ファイルに静止画像をつけて動画にする
ffmpeg -loop 1 -r 30000/1001 -i image.png -i sound.mp3 -vcodec libx264 -acodec aac -strict experimental -ab 320k -ac 2 -ar 48000 -pix_fmt yuv420p -shortest output.mp4

■複数の画像ファイルから、アニメーションgif ファイルを作成する
ffmpeg -framerate 2 -i png%02d.png -vf scale=1920:-1 -pix_fmt rgb8 -f gif output.gif

■動画ファイルから、音声を除去
ffmpeg -i input.mp4 -vcodec copy -an output.mp4

■字幕ファイルを vtt → srt にフォーマット変換する
ffmpeg -i subtitles.vtt subtitles.srt

※各コマンドの意味については、ググるなどしてご確認されることをおススめいたします。

##参考にさせていただいたページ(感謝!)

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?