Created
March 16, 2015 17:22
-
-
Save bgadrian/4ccdd2bbda9a8502e25d to your computer and use it in GitHub Desktop.
avidemux convert to avi all files from a folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set processfolder=avi | |
set avidemux="C:\Program Files\Avidemux 2.5\avidemux2.exe" | |
set videocodec=Xvid | |
set audiocodec=MP3 | |
mkdir %1%processfolder% | |
for %%f in (*.3gp) do %avidemux% --nogui --video-codec %videocodec% --audio-codec %audiocodec% --force-alt-h264 --load "%%f" --save "avi\%%f" --quit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment