Using ffmpeg to change framerate

前端 未结 6 1806
猫巷女王i
猫巷女王i 2020-11-29 01:42

I am trying to convert a video clip (MP4, yuv420p) from 30 fps to 24 fps. The number of frames is correct so my output should change from 20 minutes at 30fps to 25 minutes a

6条回答
  •  春和景丽
    2020-11-29 01:47

    You may consider using fps filter. It won't change the video playback speed:

    ffmpeg -i  -filter:v fps=fps=30 
    

    Worked nice for reducing fps from 59.6 to 30.

提交回复
热议问题