LoginSignup
2
1

More than 5 years have passed since last update.

ffmpegで複数のflvを結合してmp4にする方法

Posted at

いつも魔法の呪文を忘れるので

ffmpeg -i file1.flv -i file2.flv -filter_complex "concat=n=2:v=1:a=1" output.mp4
  • -filter_complex オプションで連結の指定
    concat=
    • n=連結するファイル数(デフォルト: 2)
    • v=ビデオ ストリーム数(デフォルト: 1)
    • a=オーディオ ストリーム数(デフォルト: 0)
2
1
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
1