Created
November 25, 2014 01:33
-
-
Save crackwitz/3fe2553ec144710ae01f to your computer and use it in GitHub Desktop.
temptranscode.cmd
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
@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