View Single Post
Old 22nd February 2019, 15:28   #7  |  Link
poisondeathray
Registered User
 
Join Date: Sep 2007
Posts: 5,346
For those "pseudo" VFR files, I would use mp4fpsmod . You can batch, and even inplace edit with "-i" (the -i means inplace edit, not "input" like ffmpeg)

eg.
Code:
"mp4fpsmod.exe" --fps 0:30000/1001  "input.mp4" -o "output_cfr.mp4"
batch inplace edit all mp4 files in a directory
Code:
for %%a in ("*.mp4") do "mp4fpsmod" "%%a" -i --fps 0:30000/1001
pause
poisondeathray is offline   Reply With Quote