LoginSignup
2
4

More than 5 years have passed since last update.

ffmpegコマンドメモ

Last updated at Posted at 2017-03-29

フレームレートを変更する

オプション
-r (fps)
サンプル
$ ffmpeg -i input.mp4 -r 30 -c copy output.mp4

動画をクリッピングする

オプション
-filter:v "crop=(幅):(高さ):(左からの距離):(上からの距離)"
サンプル
$ ffmpeg -i input.mp4 -filter:v "crop=200:360:220:0" -c:a copy output.mp4
2
4
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
2
4