Created
July 13, 2018 19:32
-
-
Save r-pufky/7e91540f141ece88f6505b15416d4445 to your computer and use it in GitHub Desktop.
Convert all audio files found into 320k CBS 48k stereo mp3's
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
find . -type f -exec ffmpeg -i {} -y -vn -ab 320k -ac 2 -ar 48000 {}.mp3 \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment