Created
August 23, 2018 14:13
-
-
Save psenough/7d9c046c09ba9119f06a286a00565154 to your computer and use it in GitHub Desktop.
batch script to convert all wavs in a directory to 44.1 320kbps mp3s without metadata using ffmpeg
This file contains hidden or 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
| @ECHO OFF | |
| FOR %%f IN (*.wav) DO ( | |
| echo Converting: %%f | |
| ffmpeg -i "%%f" -ar 44100 -ab 320k -map_metadata -1 "%%~nf.mp3" | |
| ) | |
| echo Finished | |
| PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment