Skip to content

Instantly share code, notes, and snippets.

@drewlustro
Created August 25, 2017 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drewlustro/526e392c9a3c089b75c662f5d359cf3c to your computer and use it in GitHub Desktop.
Save drewlustro/526e392c9a3c089b75c662f5d359cf3c to your computer and use it in GitHub Desktop.
Multicore sox conversion of FLAC to 320 kbps LAME MP3 CBR
#!/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