Created
June 23, 2017 01:43
-
-
Save psenough/549e5631eadeab7bbeef9a7a0d788514 to your computer and use it in GitHub Desktop.
batch script to use ffmpeg to convert all flv files into mp4
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
for %%f in (*.flv) do ( | |
ffmpeg -i "%%~nf.flv" -vcodec copy -acodec copy "%%~nf.mp4" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment