Created
August 25, 2017 18:21
-
-
Save drewlustro/526e392c9a3c089b75c662f5d359cf3c to your computer and use it in GitHub Desktop.
Multicore sox conversion of FLAC to 320 kbps LAME MP3 CBR
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
#!/usr/bin/env bash | |
find . -type f -iname '*.flac' -print0 | xargs -0 -n 1 -P 8 -I {} sox {} -C 320 -V2 {}.mp3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment