Last active
January 25, 2025 01:05
-
-
Save antydemant/642cc845611328d50d9a79408ea79c89 to your computer and use it in GitHub Desktop.
Convert WAV to MP3 320k stereo 44100Hz using ffmpeg
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 -y -i "$i" -ab 320k -ac 2 -ar 44100 -joint_stereo 0 "${i%.*}.mp3"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment