LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
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


Reply
  Search this Thread
Old 06-30-2003, 04:58 AM   #1
MoriyaMinakata
LQ Newbie
 
Registered: Apr 2003
Posts: 9

Rep: Reputation: 0
Unhappy 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...
 
Old 06-30-2003, 05:00 AM   #2
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
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
 
Old 07-17-2003, 05:21 AM   #3
MoriyaMinakata
LQ Newbie
 
Registered: Apr 2003
Posts: 9

Original Poster
Rep: Reputation: 0
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.
 
Old 07-17-2003, 05:35 AM   #4
yowwww
Member
 
Registered: Apr 2003
Location: Ontario, Canada
Distribution: Arch Linux
Posts: 533

Rep: Reputation: 30
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
 
Old 07-17-2003, 06:02 AM   #5
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
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
 
Old 07-17-2003, 06:41 AM   #6
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
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
 
Old 07-17-2003, 12:16 PM   #7
yowwww
Member
 
Registered: Apr 2003
Location: Ontario, Canada
Distribution: Arch Linux
Posts: 533

Rep: Reputation: 30
cli is nice for sure, but not everyone is used to it or likes it.
 
Old 07-17-2003, 12:22 PM   #8
DrOzz
Senior Member
 
Registered: May 2003
Location: Sydney, Nova Scotia, Canada
Distribution: slackware
Posts: 4,185

Rep: Reputation: 60
but then again if you make aliases for those commands it almost could be easier to use the CLI.
 
Old 07-17-2003, 01:19 PM   #9
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
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
 
Old 07-17-2003, 02:06 PM   #10
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
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"?
 
Old 07-17-2003, 11:59 PM   #11
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
Nope. You could browse log files too

Cool
 
Old 07-20-2003, 12:04 AM   #12
Brain Drop
Member
 
Registered: Feb 2003
Location: just outside reality
Distribution: balanced
Posts: 752

Rep: Reputation: 35
unless like me you turned all loging off
 
Old 07-20-2003, 12:12 AM   #13
MasterC
LQ Guru
 
Registered: Mar 2002
Location: Salt Lake City, UT - USA
Distribution: Gentoo ; LFS ; Kubuntu ; CentOS ; Raspbian
Posts: 12,613

Rep: Reputation: 69
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
 
Old 07-23-2003, 06:05 AM   #14
MoriyaMinakata
LQ Newbie
 
Registered: Apr 2003
Posts: 9

Original Poster
Rep: Reputation: 0
Talking 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
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
audio burning PIayer Linux - Software 3 07-08-2005 12:37 PM
k3b audio burning doralsoral Linux - Software 2 11-29-2004 01:38 PM
Problem with burning Audio CD ... raikov Linux - Software 5 05-29-2004 09:34 AM
CD burning ? (audio) wr3ck3d Linux - Software 2 04-08-2003 04:56 PM
Burning Audio CD. Half_Elf Linux - Software 5 03-15-2003 03:35 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 09:57 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration