Browser FFmpeg recipe

Change Frame Rate Online with FFmpeg

Create a 30 fps version of the source video.

Command

Run this FFmpeg command

ffmpeg -i input.mp4 -vf fps=30 -c:v libx264 -crf 23 -preset fast -c:a copy 30fps.mp4

When to use it

  • standard exports
  • platform requirements
  • smoother previews

How it works

  1. Upload the video.
  2. Set fps to the target frame rate.
  3. Run FFmpeg and download the converted video.

Option reference

OptionWhat it does
fps=30Outputs 30 frames per second.
-crf 23Uses a balanced H.264 quality setting.
-c:a copyKeeps the original audio stream.

Practical notes

  • Increasing frame rate does not create real motion detail from the source.
  • Use 24, 25, 30, or 60 depending on your target platform.

FAQ

Can I convert 60 fps to 30 fps?

Yes. Set fps=30 to drop frames into a 30 fps output.

Will this affect audio sync?

The fps filter should preserve timing while changing frame cadence.