Skip to content

Instantly share code, notes, and snippets.

@acemir
Created August 26, 2015 07:50
Show Gist options
  • Save acemir/bd93a049db7d700b5767 to your computer and use it in GitHub Desktop.
Save acemir/bd93a049db7d700b5767 to your computer and use it in GitHub Desktop.
Batch convert FLV to MP4 with ffmpeg
@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