Audio conversion #

Last updated March 16, 2026
macos

To convert between audio files first install ffmpeg with brew install ffmpeg.

Convert wav file to mp3. the 320k is the bitrate. For smaller files try 128k.

ffmpeg -i input.wav -codec:a libmp3lame -b:a 320k output.mp3