Posts Tagged ‘MP3

To convert wav to mp3 using FFMPEG on OSX you’ll need to install it with this port command as root (or sudo):
1port install ffmpeg +gpl +lame +x264 +xvid
This will enable Lame and some other useful codecs, allowing you to encode mp3 (192kbs bitrate in this example) with this command line:
1ffmpeg -i source.wav -acodec libmp3lame -ab [...]


top