Skip to content

Instantly share code, notes, and snippets.

@trevorsheridan
Created March 1, 2012 09:00
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save trevorsheridan/1948448 to your computer and use it in GitHub Desktop.
Save trevorsheridan/1948448 to your computer and use it in GitHub Desktop.
Installing LAME on Mac OSX Lion
Getting the Source
$ cd ~/source
$ curl -L -O http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz
$ tar -zxvf lame-3.99.5.tar.gz
$ rm -r lame-3.99.5.tar.gz
$ cd lame-3.99.5
Installing
$ ./configure
$ make
$ sudo make install
Checking if it was installed successfully
$ which lame
$ lame -v
@EvanWieland
Copy link

Awesome! Thanks a ton for documenting this!

@geoffsimons
Copy link

Apparently, there is now a Homebrew formula that makes it super easy:

brew install lame

@luizen
Copy link

luizen commented Feb 1, 2019

Greaaaaaat! Thanks for this :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment