Skip to content

Instantly share code, notes, and snippets.

@crackwitz
Created November 25, 2014 01:33
Show Gist options
  • Save crackwitz/3fe2553ec144710ae01f to your computer and use it in GitHub Desktop.
Save crackwitz/3fe2553ec144710ae01f to your computer and use it in GitHub Desktop.
temptranscode.cmd
@echo off
:loop
if [%1]==[] goto done
set infile=%1
set outfile="%~dpn1-temp.mp4"
shift
ffmpeg -i %infile% -c:a libvo_aacenc -ac 1 -b:a 16k -r 15 -c:v libx264 -pre:v main -b:v 80k -g 75 %outfile%
goto loop
:done
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment