View Single Post
Old 29th May 2011, 16:59   #7  |  Link
MadiZone
Registered User
 
Join Date: May 2011
Posts: 4
Quote:
Originally Posted by Lam3rD View Post
Assuming you're under Windows:

1. download ffmpeg
2. open notepad and paste this:

Code:
@ECHO OFF
:Loop
IF "%~1"=="" GOTO Continue
path\to\ffmpeg -i %1 -vcodec copy -acodec copy %1-fixed.mp4
SHIFT
GOTO Loop
:Continue
pause
3. replace path\to with the correct path
4. save as something.bat
5. drag and drop all videos you have on the batch file and you'll have them soon enough

p.s: in some cases "all" could be too much for DOS to handle, so you might have to drop them in little chunks (like 5-10-20 at a time)
Thanks! I didn't know ffmpeg could do that. :-)
Certainly beats running the stuff through QuickTime.
MadiZone is offline   Reply With Quote