Skip to content

Instantly share code, notes, and snippets.

@wojciak
Last active August 29, 2015 14:05
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 wojciak/dc9014bfea8b757b64ad to your computer and use it in GitHub Desktop.
Save wojciak/dc9014bfea8b757b64ad to your computer and use it in GitHub Desktop.
Wave to mp3
//convert
for i in *.wav; do lame -b 320 -h "${i}" "${i}.mp3"; done
//remove the .wav part
for f in *.mp3; do mv "$f" "${f/.*./.}"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment