LinuxQuestions.org
Visit Jeremy's Blog.
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 03-04-2004, 09:39 PM   #1
sxa
Senior Member
 
Registered: Aug 2003
Location: Austin, TX
Distribution: Mac OS 10.7 / CentOS 6(servers) / xubuntu 13.04
Posts: 1,186

Rep: Reputation: 49
Program For Fedora that will burn MP3 Files to make CDs that will..


Kind of a confusing title.. Here is what I want..

A CD burning program for Fedora Core 1 that will take my MP3's and burn them on to a CD that will play on a regular CD player..
 
Old 03-04-2004, 09:59 PM   #2
green_dragon37
Member
 
Registered: Oct 2002
Location: Lower Alabama
Distribution: Slackware, OpenBSD 3.9
Posts: 344

Rep: Reputation: 31
Something like k3b, gtoaster, or maybe the hard way?

--Ian
 
Old 03-05-2004, 03:55 PM   #3
sxa
Senior Member
 
Registered: Aug 2003
Location: Austin, TX
Distribution: Mac OS 10.7 / CentOS 6(servers) / xubuntu 13.04
Posts: 1,186

Original Poster
Rep: Reputation: 49
I have Gtoaster, yet I want to burn the MP3s so that they will play on a regular CD player.. and I am not sure how to do that in Gtoaster, since I assume by looking at it, it will burn my MP3s on to a CD as a Data CD, not a Audio CD...
 
Old 03-06-2004, 05:38 PM   #4
sxa
Senior Member
 
Registered: Aug 2003
Location: Austin, TX
Distribution: Mac OS 10.7 / CentOS 6(servers) / xubuntu 13.04
Posts: 1,186

Original Poster
Rep: Reputation: 49
^Bump

I am sorry I am bumping this, but I really need help..
 
Old 03-06-2004, 06:26 PM   #5
cetialphav
Member
 
Registered: Sep 2003
Location: Raleigh, NC, USA
Distribution: Fedora
Posts: 88

Rep: Reputation: 16
Does this help?
 
Old 03-07-2004, 06:59 PM   #6
sxa
Senior Member
 
Registered: Aug 2003
Location: Austin, TX
Distribution: Mac OS 10.7 / CentOS 6(servers) / xubuntu 13.04
Posts: 1,186

Original Poster
Rep: Reputation: 49
The think is I can't really make sense of all of that..

Here is what I typed in to try to convert mp3-wav..

Quote:
[sanness@localhost sanness]$ for i in *r1.mp3; do mpg123 -w `basename $i .mp3`.wav $i; done
Here is what I get in return..

Quote:
bash: mpg123: command not found
so as you can see I have no clue what I am doing.. Thats why I figured a peice of software could burn the CDs without all of this trouble.. I know I can do it in windows, my windows keeps crashing on me, so I trying to do it in Linux..
 
Old 03-07-2004, 07:10 PM   #7
Genesee
Member
 
Registered: Dec 2002
Distribution: Slackware
Posts: 927

Rep: Reputation: 30
XCDRoast may help:

http://www.xcdroast.org/manual/createaudio.html
 
Old 03-07-2004, 07:27 PM   #8
sxa
Senior Member
 
Registered: Aug 2003
Location: Austin, TX
Distribution: Mac OS 10.7 / CentOS 6(servers) / xubuntu 13.04
Posts: 1,186

Original Poster
Rep: Reputation: 49
Thanks for that link, I wil have to get LAME tonight so I can make the conversions, and then I will see about getting XCDroast to burn the CD.. if I run into any problems I will be sure to come back over here...

Thanks everyone...
 
Old 03-07-2004, 07:28 PM   #9
fancypiper
LQ Guru
 
Registered: Feb 2003
Location: Sparta, NC USA
Distribution: Ubuntu 10.04
Posts: 5,141

Rep: Reputation: 60
Get your mp3 support here

The command line is your friend....

# CD burning copying ripping info
Is it configured and what is the device? Command this to find out:
cdrecord -scanbus
Adding an IDE CD-Writer to Linux
Linux DVD HOWTO
CD Writing HOWTO
Burning CDs on Linux
# 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
# ISO information
isoinfo -i -d /dev/cdrom
# Generate an ISO from a directory.
mkisofs -vrTJUV "Label" -o foo.iso /path/to/directory
# Generate an ISO from a CD
dd if=/dev/cdrom of=foo.iso
# cdparanoia - search for a drive with reporting of autosense:
cdparanoia -vsQ
# Rip a complete audio CD with cdparanoia
cdparanoia -B "1-"
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
# Copy CD using cdrdao
cdrdao read-cd --device <your device> --read-raw --datafile mydata.bin -v 99 mydata.cue
cdrdao write --device <your device> --overburn -v 99 --speed <burning speed> mydata.cue

# Erase a CDRW
cdrecord -v dev=<your device> speed=<burning speed> blank=fast

# Red Hat links
Red Hat Linux Manuals
Get your mp3 support here
Maximum RPM
rpmfind
Easier software management: apt4rpm - Red Carpet
Red Hat 8.0 Tips & Tricks

# Red Hat 7.3 down configuration commands
setup leads to several configuration tools

# Red Hat 7.3 up configuration commands
Configure soundcard:
redhat-config-soundcard
Configure X server:
redhat-config-xfree86
Configure network:
redhat-config-network
Manage software:
redhat-config-packages
Red Hat Linux 8.0 Package Management Tool
Red Hat 9.0 Package Management Tool
Manage users
redhat-config-users

# Handling NTFS
New Technology FileSystem (NTFS) HOWTOs
Linux NTFS project

Last edited by fancypiper; 03-07-2004 at 07:34 PM.
 
  


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
How do I burn data cds for mp3-diskman? linmix Linux - Hardware 6 10-28-2005 03:46 PM
Burn Fedora Core 4 (x86) CDs with Nero 6 shuvorim Fedora - Installation 1 06-25-2005 05:39 PM
No enough space to burn the Fedora installation CDS wadehan Red Hat 5 11-29-2004 12:57 PM
need a program to build CDs and MP3 database drawhla Linux - Software 2 10-20-2004 11:46 AM
Howto: Make compilation AUDIO (NOT MP3) CDs? hollerith Linux - Newbie 6 01-12-2004 07:21 AM

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

All times are GMT -5. The time now is 12:59 AM.

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