Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
04-07-2006, 10:02 AM
|
#1
|
Member
Registered: Dec 2005
Distribution: Linux Mint 13 MATE
Posts: 120
Rep:
|
Wave Form Editor?
Hi all,
I am looking for a wave form editor, preferably one that supports other formats like MP3 directly (without having to convert to WAV with another application).
Anyone has any to recommend?
i tried Ecawave, but have encountered some problems with it. Searching with the Synaptic Package Manager, i could see GNoise and Kwave as well. Anyone has got any experience with those?
TIA and Regards,
Edwin
|
|
|
04-07-2006, 10:29 AM
|
#2
|
Senior Member
Registered: May 2004
Location: Albuquerque, NM USA
Distribution: Debian-Lenny/Sid 32/64 Desktop: Generic AMD64-EVGA 680i Laptop: Generic Intel SIS-AC97
Posts: 4,250
Rep:
|
Most people, including me, use Audacity. I've heard that Ardour is also quite good.
|
|
|
04-07-2006, 10:52 AM
|
#3
|
Member
Registered: Aug 2004
Location: Philly
Distribution: Debian Lenny, FreeBSD
Posts: 577
Rep:
|
I also recommend Audacity as well however, after you install audacity in the options you may have to tell it where lame is on your system. I had to do this because mp3 conversion would not work, I realized that it did not detect my lame installation automatically.
Peace V
Last edited by cuiq; 04-07-2006 at 10:53 AM.
|
|
|
04-07-2006, 10:59 AM
|
#4
|
LQ Addict
Registered: Dec 2003
Location: Maine, USA
Distribution: Slackware/SuSE/DSL
Posts: 1,320
Rep:
|
Audacity, definitely.
Ardour is a powerful program, but i would not recommend it for straight audio editing...seems to be directed more toward professional recording/mixing, and its size and complexity reflects that.
http://linux-sound.org/
|
|
|
04-07-2006, 11:24 AM
|
#5
|
Member
Registered: Dec 2005
Distribution: Linux Mint 13 MATE
Posts: 120
Original Poster
Rep:
|
Thanks for the recommendations guys!
I've had a look at both Audacity and Ardour. Agree that Ardour does look complex. Audacity sounds good, and it is even available in my universe (i'm using Ubuntu Breezy Badger)... UNFORTUNATELY, it requires libglib1.2, libgtk1.2 and libgtk1.2-common, while i have libglib2.0-0. libgtk2.0-0 and libgtk2.0-common installed. Should i be concerned about conflicts?
Also, i'm *not sure* if i have lame installed... i do have the package liblame0 installed, however, i once tried to convert a WAV file to MP3 and i just couldn't figure how to do that.
Thanks and Regards,
Edwin
|
|
|
04-07-2006, 01:14 PM
|
#6
|
Member
Registered: Aug 2004
Location: Philly
Distribution: Debian Lenny, FreeBSD
Posts: 577
Rep:
|
Using Synaptic or apt-get to install audacity should handle any dependancies the package will need.
Looks like you have lame installed but to be sure on the command line type this
whereis lame
This will give you a list of every directory where lame is located. Also keep my previous post in mind that you may have to configure the software in options to tell it where lame is on your system.
For instance when I installed grip it did not detect lame automatically I had to go into options to make the changes for it to use lame for mp3 conversion.
Peace V
Last edited by cuiq; 04-07-2006 at 01:16 PM.
|
|
|
04-07-2006, 08:27 PM
|
#7
|
Member
Registered: Dec 2005
Distribution: Linux Mint 13 MATE
Posts: 120
Original Poster
Rep:
|
Quote:
Originally Posted by cuiq
Using Synaptic or apt-get to install audacity should handle any dependancies the package will need.
|
i though so too, but the question is, whether i can have libglib1.2 and libglib2.0-0, libgtk1.2 and libgtk2.0-0, and libgtk1.2-common and libgtk2.0-common co-existing on my system at the same time. 'cos i have other applications that depend on those three libraries, i wouldn't want to break them...
Quote:
Originally Posted by cuiq
Looks like you have lame installed but to be sure on the command line type this
whereis lame
|
hmm... looks like i don't...
Code:
$ whereis lame
lame:
Thanks and Regards,
Edwin
|
|
|
04-08-2006, 10:16 AM
|
#8
|
LQ Addict
Registered: Dec 2003
Location: Maine, USA
Distribution: Slackware/SuSE/DSL
Posts: 1,320
Rep:
|
Audacity needs only libmp3lame.so*
It doesn't require the lame executeable, so maybe try "locate libmp3". It's possible that maybe you have the lib installed, but not the full lame package?
I'm really surprised that your system does not have both gtk1.2 and gtk2 installed. Even though gtk2 is obviously newer, there are still many programs (fortunately) which use the older (and smaller & faster) gtk1.2
|
|
|
04-09-2006, 12:25 AM
|
#9
|
Member
Registered: Dec 2005
Distribution: Linux Mint 13 MATE
Posts: 120
Original Poster
Rep:
|
Quote:
Originally Posted by mikshaw
Audacity needs only libmp3lame.so*
It doesn't require the lame executeable, so maybe try "locate libmp3". It's possible that maybe you have the lib installed, but not the full lame package?
|
Great! It has.
Code:
$ locate libmp3
/usr/lib/libmp3lame.so.0
/usr/lib/libmp3lame.so.0.0.0
Quote:
Originally Posted by mikshaw
I'm really surprised that your system does not have both gtk1.2 and gtk2 installed. Even though gtk2 is obviously newer, there are still many programs (fortunately) which use the older (and smaller & faster) gtk1.2
|
Oh? Does it mean that gtk1.2 and gtk2 can co-exist at the same time? i didn't know that, always thought that there would be some conflict. On the same note, does it mean that (for a different purpose), i can have python2.3 and python2.4, and gcc-3.4-base and gcc-4.0-base at the same time?
Thanks and Regards,
Edwin
|
|
|
04-09-2006, 07:47 PM
|
#10
|
Member
Registered: Aug 2004
Location: Philly
Distribution: Debian Lenny, FreeBSD
Posts: 577
Rep:
|
Quote:
Originally Posted by edwin11
Great! It has.
Code:
$ locate libmp3
/usr/lib/libmp3lame.so.0
/usr/lib/libmp3lame.so.0.0.0
Oh? Does it mean that gtk1.2 and gtk2 can co-exist at the same time? i didn't know that, always thought that there would be some conflict. On the same note, does it mean that (for a different purpose), i can have python2.3 and python2.4, and gcc-3.4-base and gcc-4.0-base at the same time?
Thanks and Regards,
Edwin
|
I have all those installed at the same time with no broken packages or conflicts. And yes I installed audacity through synaptic w/o problems.
|
|
|
04-10-2006, 09:14 AM
|
#11
|
Member
Registered: Dec 2005
Distribution: Linux Mint 13 MATE
Posts: 120
Original Poster
Rep:
|
Quote:
Originally Posted by cuiq
I have all those installed at the same time with no broken packages or conflicts. And yes I installed audacity through synaptic w/o problems.
|
Great! i'll go ahead and do that. Thanks and also to all who replied!
Regards,
Edwin
|
|
|
All times are GMT -5. The time now is 04:53 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|