Skip to content

Instantly share code, notes, and snippets.

@EggieCode
Created June 30, 2015 18:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save EggieCode/e829ea12ad504f104e5b to your computer and use it in GitHub Desktop.
Save EggieCode/e829ea12ad504f104e5b to your computer and use it in GitHub Desktop.
Bat file FFMPEG (FLV to MP4)
REM Convert with ffmpeg, FLV to MP4
for %%a in ("*.flv") do ffmpeg -i "%%a" -c:v libx264 -crf 23 -c:a libfaac -q:a 100 -b:a 128k "newfiles\%%~na.mp4"
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment