View Single Post
Old 6th June 2012, 20:11   #60  |  Link
ckeays
Registered User
 
Join Date: Mar 2008
Posts: 2
Great little program! Thank you !!!!!

I am trying to use the command line version to change the display AR to 16:9. (I have used the GUI to do this many times, but only one file at a time)

here is my bat file:
Code:
@ECHO OFF
md unpack
FOR %%I IN (*.avi) DO mmcl.exe --dar 169ntsc "%%~fI" "%%~dpIunpack\%%~nxI"
pause
doesn't work as the GUI does. (after using the GUI, media info shows the correct 16:9, the command line version shows 4.103)

anyone help?

EDIT:

Ok I got it now using this cmd in win XP:
Code:
@ECHO OFF
md unpack
FOR %%I IN (*.avi) DO mmcl.exe --dar custom 16:9 "%%~fI" "%%~dpIunpack\%%~nxI"
pause
thanks again for a great program!

Last edited by ckeays; 6th June 2012 at 20:41. Reason: solved
ckeays is offline   Reply With Quote