Skip to content

Instantly share code, notes, and snippets.

@davidmfoley
Created June 10, 2020 14:37
Show Gist options
  • Save davidmfoley/a39fc43edc9c826b919d126b1a137df8 to your computer and use it in GitHub Desktop.
Save davidmfoley/a39fc43edc9c826b919d126b1a137df8 to your computer and use it in GitHub Desktop.
convert all wavs to mp3
for file in *.wav ; do ffmpeg -i "$file" -b:a 320k "${file%.*}.mp3" ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment