Created
March 10, 2022 13:47
-
-
Save krabs-github/798d33bdcc9efc443ec3a94aed7dad97 to your computer and use it in GitHub Desktop.
Batch Convert to MP3 with ffmpeg #Linux
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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