Skip to content

Instantly share code, notes, and snippets.

@msgodf
Created July 17, 2014 10:46
Show Gist options
  • Select an option

  • Save msgodf/4f6ca8a1df5c65bb9483 to your computer and use it in GitHub Desktop.

Select an option

Save msgodf/4f6ca8a1df5c65bb9483 to your computer and use it in GitHub Desktop.
Encode a bunch of FLAC files in the current directory to MP3
ls -1|sed -e "s/'/\\\'/g" -e "s/.flac//g"|xargs -I{} avconv -i {}.flac -c:a libmp3lame -b:a 256k {}.mp3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment