Skip to content

Instantly share code, notes, and snippets.

@Frodox
Created May 14, 2014 20:38
Show Gist options
  • Save Frodox/f8242a05efaaea9f8e18 to your computer and use it in GitHub Desktop.
Save Frodox/f8242a05efaaea9f8e18 to your computer and use it in GitHub Desktop.
Convert all mp3 to ogg
#!/bin/sh
# bitrate is "optimal" for every song
find -name '*.mp3' -print0 | xargs -0 -l -P 4 sh -c 'ffmpeg -v quiet -i "$0" -vn "${0%mp3}ogg"'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment