19
22

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

##画像から動画作成
複数枚の画像から動画を作成
インストール方法などは他で

注意

画像はxxx_001.jpeg, xxx_002.jpegの様に名前を着ける

ffmpeg -r 30 -i xxx_%3d.jpeg test.mp4

pngを使う場合は以下

ffmpeg -r 30 -i xxx_%3d.png -c:v libx264 -pix_fmt yuv420p test.mp4

-r
fps

-i
in ファイル

他は本家確認…

ffmpeg

19
22
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
19
22

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?