I am trying to convert some files into ProRes. One fairly important part of the conversion is:
Simple frame dropping:
ffmpeg -i input.mov -r 30 output.mov
Interpolate frames with the minterpolate filter:
ffmpeg -i input.mov -vf minterpolate=fps=30 output.mov
Interpolate frames with the framerate filter:
ffmpeg -i input.mov -vf framerate=fps=30 output.mov