More video conversion bullarcy - MOV files to AVI for windows media player playback
Note to self: This was a good batch file for converting from MOV to AVI
It presumes you have mencoder present in your working directory. But that's a given for me. I never leave home without copies of mencoder and VLC.
if "%1" == "" goto noinfile if "%2" == "" goto nooutfile mencoder %1 -alang en -vf scale -zoom -xy 480 \ -o c:\temp\%2.avi \ -ovc lavc -lavcopts vcodec=msmpeg4v2 \ -oac lavc -lavcopts acodec=mp2 copy c:\temp\%2.avi "c:\test_editstudio\%2.avi" :noinfile :nooutfile
It presumes you have mencoder present in your working directory. But that's a given for me. I never leave home without copies of mencoder and VLC.
0 Comments:
Post a Comment
<< Home