Skip to content

Instantly share code, notes, and snippets.

@tlancon
Last active September 29, 2020 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tlancon/d26a7ec209de4b074106ba2d37570335 to your computer and use it in GitHub Desktop.
Save tlancon/d26a7ec209de4b074106ba2d37570335 to your computer and use it in GitHub Desktop.
Rips the audio from the all MP4s in the current directory to WAV. Requires FFMPEG.
for /r %%f in (*MP4) do (
ffmpeg -i %%f -q:a 0 -map a "%%~nf.wav"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment