Skip to content

Instantly share code, notes, and snippets.

@psenough
Created June 23, 2017 01:43
Show Gist options
  • Save psenough/549e5631eadeab7bbeef9a7a0d788514 to your computer and use it in GitHub Desktop.
Save psenough/549e5631eadeab7bbeef9a7a0d788514 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