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.
|
|
06-30-2003, 04:58 AM
|
#1
|
LQ Newbie
Registered: Apr 2003
Posts: 9
Rep:
|
Audio CD burning with GUI
Is there a prog i can use to drag and drop mp3s that will convert them to wav to make audio cds for me? manually converting them in console is a hell of alotta trouble and takes up too much time...
|
|
|
06-30-2003, 05:00 AM
|
#2
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
Give:
K3B
A try. Alternatively, Eroaster, XCDRoast, GTKCombust should all work as well.
Oh, and I almost forgot, Arson.
One last excellent CLI app is at:
http://jetblackz.freeservers.com
Cool
|
|
|
07-17-2003, 05:21 AM
|
#3
|
LQ Newbie
Registered: Apr 2003
Posts: 9
Original Poster
Rep:
|
When I try to get cdcopy to convert the files to wav for an audio cd, it says "mpg123 command not found"
what am i supposed to do about that?
And since I am posting, i would also like to know why i cant install rpm packages...it goes thru the dependencies and it gets to reading system state and then closes the installer.
|
|
|
07-17-2003, 05:35 AM
|
#4
|
Member
Registered: Apr 2003
Location: Ontario, Canada
Distribution: Arch Linux
Posts: 533
Rep:
|
what distro??
sounds like you need the mpg123 codec.
see my guide for more details
if its rh9, there is a page specific to that
|
|
|
07-17-2003, 06:02 AM
|
#5
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
Quote:
Originally posted by MoriyaMinakata
When I try to get cdcopy to convert the files to wav for an audio cd, it says "mpg123 command not found"
what am i supposed to do about that?
And since I am posting, i would also like to know why i cant install rpm packages...it goes thru the dependencies and it gets to reading system state and then closes the installer.
|
I prefer the command line as it definitely gives a much better indicator of errors. So try using the command line to install your RPM's and then post up any errors:
rpm -ivh filename.rpm
Where filename is the file that is to be installed (be sure you are in the correct directory containing the file ).
Cool
|
|
|
07-17-2003, 06:41 AM
|
#6
|
LQ Guru
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141
Rep:
|
GUI? Why? Go straight to the program with the command line.
# CD burning info
Is it configured and what is the device? Command this to find out:
cdrecord -scanbus
Adding an IDE CD-Writer to Linux
CD Writing HOWTO
# Burn an ISO to disk
cdrecord -v speed=<burning speed> dev=<your device> /path/to/foo.iso
# Burn from disk to disk
cdrecord -v dev=<your device> speed=<burning speed> -isosize /dev/cdrom
# Generate an ISO from a directory.
mkisofs -Jr -o foo.iso /path/to/directory
mkisofs -vrTJUV "Label" -o foo.iso /path/to/directory
# Generate an ISO from a CD
dd if=/dev/cdrom of=foo.iso
Linux MP3 CD Burning mini-HOWTO
# Convert mp3 to wav with lame
for i in *.mp3; do lame --decode $i `basename $i .mp3`.wav; done
# Burn a CD from wav files
cdrecord -v -audio -pad speed=<burning speed> dev=<your device> /path/to/*.wav
# Erase a CDRW
cdrecord -v dev=<your device> speed=<burning speed> blank=fast
|
|
|
07-17-2003, 12:16 PM
|
#7
|
Member
Registered: Apr 2003
Location: Ontario, Canada
Distribution: Arch Linux
Posts: 533
Rep:
|
cli is nice for sure, but not everyone is used to it or likes it.
|
|
|
07-17-2003, 12:22 PM
|
#8
|
Senior Member
Registered: May 2003
Location: Sydney, Nova Scotia, Canada
Distribution: slackware
Posts: 4,185
Rep:
|
but then again if you make aliases for those commands it almost could be easier to use the CLI.
|
|
|
07-17-2003, 01:19 PM
|
#9
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
Quote:
Originally posted by yowwww
cli is nice for sure, but not everyone is used to it or likes it.
|
That's correct, but to get an error to the folks helping you, it's gotta be the best/easiest way
Cool
|
|
|
07-17-2003, 02:06 PM
|
#10
|
LQ Guru
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141
Rep:
|
Quote:
Originally posted by MasterC
That's correct, but to get an error to the folks helping you, it's gotta be the best/easiest way
|
Didn't you mean "only way"?
|
|
|
07-17-2003, 11:59 PM
|
#11
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
Nope. You could browse log files too
Cool
|
|
|
07-20-2003, 12:04 AM
|
#12
|
Member
Registered: Feb 2003
Location: just outside reality
Distribution: balanced
Posts: 752
Rep:
|
unless like me you turned all loging off
|
|
|
07-20-2003, 12:12 AM
|
#13
|
LQ Guru
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613
Rep:
|
Which works assuming you are at a point on your system where you have everything working correctly and efficiently and do not plan on adding more. Also, if you are connected to a network, it's probably a good idea to at the very least log some of that activity
Cool
|
|
|
07-23-2003, 06:05 AM
|
#14
|
LQ Newbie
Registered: Apr 2003
Posts: 9
Original Poster
Rep:
|
Thanks
Thanks for all the help, I was able to burn an audio cd sucessfully, which I enjoy listening to everyday in my car on my way to my crappy job.
Thanks ALOT
|
|
|
All times are GMT -5. The time now is 09:57 PM.
|
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
|
|