Skip to content

Instantly share code, notes, and snippets.

@joeywang
Created October 15, 2013 09:59
Show Gist options
  • Select an option

  • Save joeywang/6989333 to your computer and use it in GitHub Desktop.

Select an option

Save joeywang/6989333 to your computer and use it in GitHub Desktop.
command to encode the mp3 files into lower rate ones.
find . -name '*.mp3'|sed 's/^\.\///g'|xargs -I {} -L1 ffmpeg -y -i {} -q:a 9 ../new/{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment