Skip to content

Instantly share code, notes, and snippets.

@bgadrian
Created March 16, 2015 17:22
Show Gist options
  • Save bgadrian/4ccdd2bbda9a8502e25d to your computer and use it in GitHub Desktop.
Save bgadrian/4ccdd2bbda9a8502e25d to your computer and use it in GitHub Desktop.
avidemux convert to avi all files from a folder
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