ffmpeg split avi into frames with known frame rate

前端 未结 4 1026
时光取名叫无心
时光取名叫无心 2020-12-24 07:28

I posted this as comments under this related thread. However, they seem to have gone unnoticed =(

I\'ve used

ffmpeg -i myfile.avi -f image2 image-%05         


        
4条回答
  •  温柔的废话
    2020-12-24 07:49

    I tried this on ubuntu 18.04 terminal.

    ffmpeg -i input_video.avi output_frame_path_images%5d.png
    

    where,

    -i = Input

提交回复
热议问题