3
3

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 5 years have passed since last update.

ffmpegで連番画像からフレーム補完をした画像を得る

Posted at

フレームレート24を想定して作られた連番のframe_00000.png,frame_00001.png,...という画像からフレーム補完をしたフレームレート60の連番画像を得るffmpegのコマンド。

ffmpeg -framerate 24 -i frame_%05d.png -vf minterpolate output/frame_%05d.png

※ 出力結果が入力と混ざらないように、出力先フォルダを分けています。

minterpolateにいろいろオプションを設定することでより改善したイメージが得られる可能性がある。

ffmpeg -framerate 24 -i frame_%05d.png -vf "minterpolate='mi_mode=mci:mc_mode=aobmc:me_mode=bidir'" output/frame_%05d.png

minterpolateに指定可能なオプションは公式ドキュメントに一覧があります。

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?