Skip to content

Instantly share code, notes, and snippets.

@fbmoose48
Last active December 30, 2022 05:41
Show Gist options
  • Save fbmoose48/8a0efc7a59f13bff902702904aa5c11c to your computer and use it in GitHub Desktop.
Save fbmoose48/8a0efc7a59f13bff902702904aa5c11c to your computer and use it in GitHub Desktop.
wav2mp3
#!/bin/bash
for file in *.wav; do lame -b 128 "$file"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment