开发者

change fps while-loops exporting ffmpeg

开发者 https://www.devze.com 2023-03-06 18:37 出处:网络
I am new to FFMP开发者_StackOverflow社区EG. I am trying to export still images from a video file. I did it correctly.

I am new to FFMP开发者_StackOverflow社区EG. I am trying to export still images from a video file. I did it correctly.

Now i want to change average frame rate. That is if my video is 24fps and i want to export still images with 30fps. Now instead of 24 frames I need 30 frames.

Cany you please help me what to do.

Thanks in advance wizards


Use the -r command line option to FFmpeg to specify the output frame rate e.g.

ffmpeg -i input.mp4 -r 30 output.mp4

See the FFmpeg documentation here.

0

精彩评论

暂无评论...
验证码 换一张
取 消