Skip to content

Instantly share code, notes, and snippets.

@r-pufky
Created July 13, 2018 19:32
Show Gist options
  • Save r-pufky/7e91540f141ece88f6505b15416d4445 to your computer and use it in GitHub Desktop.
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
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