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で動画から画像に変換するときの出力ファイル名の連番を0からスタートさせたい

Posted at

ffmpegでは連番が1からスタートするので,0からスタートさせたいときは以下のようにしてあげます.

コマンド

$ ffmpeg -i (動画ファイル名) -f image2 -start_number 0 frame_%06d.PNG

以上のようなコマンドを打つと

frame_000000.PNG, frame_000001.PNG, framge_000002.PNG

と連番が0からスタートします.

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?