Re: Recording mp3 files to a CD

2000-10-22 Thread Bob Nielsen
That worked just fine; thanks. It's almost the same as the script in the HOWTO, but I think I must have had something set up wrong when I tried that one. On Sun, Oct 22, 2000 at 06:51:32PM -0400, Brian Stults wrote: > I put all the mp3's in a directory and from that directory I run the > followin

Re: Recording mp3 files to a CD

2000-10-22 Thread Brian Stults
I put all the mp3's in a directory and from that directory I run the following script. Use the argument "clean" to first erase the cd if it's CDRW. ### #!/bin/bash if [[ $1 == "clean" ]] then cdrecord -v speed=4 dev=0,1,0 blank=fast fi for I in *.mp3 do mpg123 --cdr - "$I" |

Re: Recording mp3 files to a CD

2000-10-22 Thread Mike
Bob Nielsen wrote: > Has anyone on the list figured out how to record mp3 to a CD? Is > there a version of sox which supports the mp3 format? I'll throw in a second for gtoaster. I've been looking for something to do MP3 -> Audio CD myself, and gtoaster fits the bill nicely. I just got done m

Re: Recording mp3 files to a CD

2000-10-22 Thread mike
On Sun, 22 Oct 2000 12:00:39 -0700, Bob Nielsen said: > I've been trying to record a few audio .mp3 files to a CD-R. The > CD-Writing-HOWTO says to use mpg123 with a --cdr option to create the > correct format, which can then be written to the CD with cdrecord, > however the version of mpg123

Recording mp3 files to a CD

2000-10-22 Thread Bob Nielsen
I've been trying to record a few audio .mp3 files to a CD-R. The CD-Writing-HOWTO says to use mpg123 with a --cdr option to create the correct format, which can then be written to the CD with cdrecord, however the version of mpg123 in potato (0.59r-6) does not appear to support this and I can't fi