LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Program For Fedora that will burn MP3 Files to make CDs that will.. (https://www.linuxquestions.org/questions/linux-software-2/program-for-fedora-that-will-burn-mp3-files-to-make-cds-that-will-153657/)

sxa 03-04-2004 09:39 PM

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..

green_dragon37 03-04-2004 09:59 PM

Something like k3b, gtoaster, or maybe the hard way?

--Ian

sxa 03-05-2004 03:55 PM

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...

sxa 03-06-2004 05:38 PM

^Bump

I am sorry I am bumping this, but I really need help..

cetialphav 03-06-2004 06:26 PM

Does this help?

sxa 03-07-2004 06:59 PM

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..

Genesee 03-07-2004 07:10 PM

XCDRoast may help:

http://www.xcdroast.org/manual/createaudio.html

sxa 03-07-2004 07:27 PM

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...

fancypiper 03-07-2004 07:28 PM

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


All times are GMT -5. The time now is 11:14 AM.