LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   can't burn audio cds (https://www.linuxquestions.org/questions/linux-newbie-8/cant-burn-audio-cds-296773/)

minm 03-02-2005 01:04 PM

can't burn audio cds
 
hey, when I try to burn audio cds in k3b, it goes to 60% then just starts to intensively use CPU then im forced to restart.

I was wondering if there is a way to fix this and if this is a common problem

Boow 03-02-2005 02:30 PM

try this

Burning MP3s onto an audio CD
In order to burn MP3s as an audio CD, you first have to convert the MP3's to .wav format. The mpg123 tool (part of the mpg321 package) is able to do this.

The following script may be used to burn all MP3s in the current directory as an audio CD. The script first converts all spaces in MP3 filenames to underscores. The MP3s are then decoded into .wav files. Finally, cdrecord burns the .wav files to disc. The script assumes a CD recorder device path of 0,0,0 and a 48x burn rate. For more information, see the Linux MP3 CD Burning mini-HOWTO.

#!/bin/sh

# Convert files containing spaces to underscores
for i in *.mp3; do mv "$i" `echo $i | tr ' ' '_'`; done

# Convert MP3s to WAV files
for i in *.mp3; do mpg123 -w `basename $i .mp3`.wav $i; done

# Burn the CD
cdrecord dev=0,0,0 -eject speed=48 -pad -audio *.wav

minm 03-02-2005 03:11 PM

thanks for the reply, i think what did it was i made it make the image first then burn it, not on the fly

ill keep this for future reference

Thanks!


All times are GMT -5. The time now is 05:47 AM.