2
0

More than 1 year has passed since last update.

動画をバラしたり再構成したりする時のffmpegメモ

Posted at

動画→静止画

フレームレート60で設定

$ ffmpeg -i input.mp4 -vcodec png -r 60 image_%04d.png

静止画→動画

こちらもフレームレート60

$ ffmpeg -r 60 -i image_%04d.png -vcodec libx264 -pix_fmt yuv420p -r 60 out.mp4

参考

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