Skip to content

Instantly share code, notes, and snippets.

@stu43005
Created October 25, 2019 10:37
Show Gist options
  • Save stu43005/7923cfbc33ab456639ae64c0e46aff32 to your computer and use it in GitHub Desktop.
Save stu43005/7923cfbc33ab456639ae64c0e46aff32 to your computer and use it in GitHub Desktop.
convert .wav to .mp3 using ffmpeg
@echo off
for /f "tokens=*" %%G in ('dir /b /s *.wav') do (
echo `%%~nxG` convert to `%%~nG.mp3`
ffmpeg -hide_banner -i "%%~nxG" -vn -ar 48000 -ac 2 -b:a 320k "%%~nG.mp3"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment