Skip to content

Instantly share code, notes, and snippets.

@sole
Created April 12, 2015 14:18
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 sole/7cc3402f5f986036f46f to your computer and use it in GitHub Desktop.
Save sole/7cc3402f5f986036f46f to your computer and use it in GitHub Desktop.
converting audio files in batch
(for FILE in *.wav; do ffmpeg -i "$FILE" -f mp3 -ab 256000 -map_metadata 0 -id3v2_version 3 "`basename "$FILE" .wav`.mp3" || break; done)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment