Skip to content

Instantly share code, notes, and snippets.

@antydemant
Last active January 25, 2025 01:05
Show Gist options
  • Save antydemant/642cc845611328d50d9a79408ea79c89 to your computer and use it in GitHub Desktop.
Save antydemant/642cc845611328d50d9a79408ea79c89 to your computer and use it in GitHub Desktop.
Convert WAV to MP3 320k stereo 44100Hz using ffmpeg
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