Created
August 26, 2015 07:50
-
-
Save acemir/bd93a049db7d700b5767 to your computer and use it in GitHub Desktop.
Batch convert FLV to MP4 with ffmpeg
This file contains 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 | |
for %%a in (*.flv) do ( | |
ffmpeg -i "%%a" -c:v libx264 -crf 19 -c:a libmp3lame -q:a 100 "%%a".mp4 | |
) | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment