-
-
Save MuhiaKevin/3ad5dcc7027d9b68c3969d3db7085988 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