View Single Post
Old 22nd February 2019, 18:14   #9  |  Link
Sharc
Registered User
 
Join Date: May 2006
Posts: 3,997
Quote:
Originally Posted by poisondeathray View Post
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
Nice, thank you. I tried and it works. These "VFR" files are still a pain. Better to convert them all to CFR before processing them further.
Sharc is offline   Reply With Quote