Skip to content

Instantly share code, notes, and snippets.

@krabs-github
Created March 10, 2022 13:47
Show Gist options
  • Save krabs-github/798d33bdcc9efc443ec3a94aed7dad97 to your computer and use it in GitHub Desktop.
Save krabs-github/798d33bdcc9efc443ec3a94aed7dad97 to your computer and use it in GitHub Desktop.
Batch Convert to MP3 with ffmpeg #Linux
for i in *.wav; do ffmpeg -i "$i" -f mp3 "${i%}.mp3"; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment