I'm trying to export a sound clip as mp3 so I can use it as a ringtone on my phone, but I can't locate the "libmp3lame.so" to do this. I've compiled and installed the lame-3.97 package, and I was just wondering where I could find the file. Thanks!
I'm trying to export a sound clip as mp3 so I can use it as a ringtone on my phone, but I can't locate the "libmp3lame.so" to do this. I've compiled and installed the lame-3.97 package, and I was just wondering where I could find the file. Thanks!
librarys are generally installed in /usr/lib
You could use these command lines to find the file :Code:sudo updatedb locate libmp3lame.so
I had the same issue. Here's the pathname:/usr/lib/libmp3lame.so.0
GUNZIP!! BUNZIP TOO!!!
"I may not understand what I'm installing, but that's not my job. I just need to click Next, Next, Finish here so I can walk to the next system and repeat the process"
-- Anonymous NT Admin
Actually you should useI had the same issue. Here's the pathname:
Quote:
/usr/lib/libmp3lame.so.0
/usr/lib/libmp3lame.so
Just place a link to that file. A library named libxyz.so is usually only a link to the most recent version of the library libxyz. So this should solve your problem:
Code:ln -s /usr/lib/libmp3lame.so.0 /usr/lib/libmp3lame.so
That file is part of liblame-dev package, but symlink soname from liblame0 is the proper solution I guess.
Use apt-file to find out what package provides the files you need.
hey im having the same problem and cant get it sorted. i used the sudo updatedb locate mentioned above and it showed the file path, but i still cant find it to use.
when i just type to correct file path into audacity it says it cant open the library.
Kreg
You do need liblame0 as well as liblame-dev.
After installing both of them, I found the libmp3lame.so.0 in the /usr/lib/
http://packages.ubuntulinux.org/dapper/libs/liblame0
http://packages.ubuntulinux.org/dapp...el/liblame-dev
Bookmarks