I have batches of videos (thousands) and I would like to know which of them already have the MOOV atom at the start of the video. This way we do not have to optimize everything, just the ones without it done already.
+ Reply to Thread
Results 1 to 5 of 5
-
-
Use a hex editor and look for "moov"? It will either be near the start of the file or near the end.
-
Code:
DEL list.txt FOR %%a IN (*.mp4) DO ( mp4box -info "%%~a" 2>&1 1>NUL | find "File suitable for progressive download (moov before mdat)" IF ERRORLEVEL 1 ( ECHO %%~a >> list.txt ) ELSE ( ECHO "do nothing" ) )
-
Sneaker, nice batch file. Just as a warning to others: I was using an old version of mp4box.exe that didn't report on progressive download. So the batch file was showing all MP4 files instead just those with the moov atom at the end. After updating my mp4box.exe the batch file worked as expected.
-
Thanks sneaker! I've adapter this script for another platform.
Similar Threads
-
Where to start? I'm a amateur photographer and I want to start out in video
By James Wright in forum Newbie / General discussionsReplies: 14Last Post: 3rd Jul 2015, 14:12 -
fixing/adding moov to assembled m4a
By juicymixx in forum Newbie / General discussionsReplies: 4Last Post: 13th Mar 2015, 15:54 -
Can not open MOV file - missing moov atom
By jbenacek in forum Video ConversionReplies: 7Last Post: 14th Jan 2015, 19:07 -
Detect changes in an avi video
By HDÖ in forum Newbie / General discussionsReplies: 2Last Post: 15th Mar 2014, 11:00 -
Moov atom not found
By Ranching in forum Video ConversionReplies: 3Last Post: 3rd May 2013, 08:38