Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save MuhiaKevin/3ad5dcc7027d9b68c3969d3db7085988 to your computer and use it in GitHub Desktop.
Save MuhiaKevin/3ad5dcc7027d9b68c3969d3db7085988 to your computer and use it in GitHub Desktop.
batch script to use ffmpeg to convert all flv files into mp4
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