Skip to content

Instantly share code, notes, and snippets.

@booherbg
Created August 2, 2024 16:34
Show Gist options
  • Save booherbg/da2ee8e91432b2c8baccefa75fcdd735 to your computer and use it in GitHub Desktop.
Save booherbg/da2ee8e91432b2c8baccefa75fcdd735 to your computer and use it in GitHub Desktop.
wav -> mp3
for f in *.wav; do
ffmpeg -i "$f" -vn -ar 44100 -ac 2 -q:a 0 "${f%.*}.mp3"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment