Last active
September 29, 2020 14:02
-
-
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.
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 /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