Skip to content

Instantly share code, notes, and snippets.

@babibn
Created December 7, 2021 09:57
Show Gist options
  • Save babibn/9e0c99932112fdcdbfa949e347cea95d to your computer and use it in GitHub Desktop.
Save babibn/9e0c99932112fdcdbfa949e347cea95d to your computer and use it in GitHub Desktop.
#for i in *.WAV; do ffmpeg -i "$i" -b:a 128k -acodec libmp3lame "${i%.*}.mp3"; done
for i in *.wav; do ffmpeg -i "$i" -b:a 128k -acodec libmp3lame "${i%.*}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment