0
1

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 で連番 png を x265 エンコードするときのコマンド @ Mac

Posted at

こういうのがある。
ParaViewとかmatplotlibとかで出力した連番画像をコマンド一発で動画にできるので便利。

それはそれとして、Mac が いつの間にか x265 に対応するようになったとのことで、ファイルサイズも x264 より小さくなるらしいし移行した方が良さそう。
オプションとかはこことかが参考になるんだが、このままだとなんか色がおかしい1

どうやらカラーフォーマットの問題らしい。yuv420pを指定してあげましょう。

ffmpeg x265
ffmpeg -r 10 -i <filename>.%04d.png \
    -vcodec libx265 -tag hvc1 -pix_fmt yuv420p -crf 28 \
    -r 10 -y out.mp4
  1. なお環境: MacBook Pro M1 Max (2021), macOS Monterey 12.4; Homebrew 3.5.10, ffmpeg 5.1

0
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?