Hi All, At the moment I am learning how to use cdrecord and have been able to make data cds. I am now trying to make a music cd from mp3s, and am assuming that I will have to convert them to .wav files and then burn them to a disk. I am wondering if anyone can recommend a good conversion tool, preferably one that comes with the personal edition of 8.0. I tried using sox but got the error message that it could not recognize .mp3 files. Anyone got any ideas? Thanks Neal McDermott
Hi Neil, I've had good luck with mpg123. It's been on previous SuSE distros and is probably on 8.0. If it's not, look on freshmeat. Just us it like this: mpg123 -s something.mpg >something.cdr The file format is not .wav, but in the format that may be burned directly by cdrecord if you do this: cdrecord -v speed=S dev=X,Y,Z -swab -pad -audio *.cdr (assumes X86 architecture. Don't use -swab on SPARC) Substitute the speed for your burner/cdrs and your own X,Y,Z config obtained by runnign cdrecord -scanbus. This will burn all the .cdr files in the directory that you're sitting in. Regards, Lew Wolfgang On Sun, 12 May 2002, neal mcdermott wrote:
Hi All,
At the moment I am learning how to use cdrecord and have been able to make data cds. I am now trying to make a music cd from mp3s, and am assuming that I will have to convert them to .wav files and then burn them to a disk.
I am wondering if anyone can recommend a good conversion tool, preferably one that comes with the personal edition of 8.0. I tried using sox but got the error message that it could not recognize .mp3 files.
Lew, Okay, thank you for getting back to me so fast. I will give it a try. Thanks also for such a detailed answer. It gives a beginner a chance. Neal. On Sunday 12 May 2002 10:36 am, Lewis E. Wolfgang wrote:
Hi Neil,
I've had good luck with mpg123. It's been on previous SuSE distros and is probably on 8.0. If it's not, look on freshmeat.
Just us it like this:
mpg123 -s something.mpg >something.cdr
The file format is not .wav, but in the format that may be burned directly by cdrecord if you do this:
cdrecord -v speed=S dev=X,Y,Z -swab -pad -audio *.cdr
(assumes X86 architecture. Don't use -swab on SPARC)
Substitute the speed for your burner/cdrs and your own X,Y,Z config obtained by runnign cdrecord -scanbus. This will burn all the .cdr files in the directory that you're sitting in.
Regards, Lew Wolfgang
On Sun, 12 May 2002, neal mcdermott wrote:
Hi All,
At the moment I am learning how to use cdrecord and have been able to make data cds. I am now trying to make a music cd from mp3s, and am assuming that I will have to convert them to .wav files and then burn them to a disk.
I am wondering if anyone can recommend a good conversion tool, preferably one that comes with the personal edition of 8.0. I tried using sox but got the error message that it could not recognize .mp3 files.
An easier way (imho) is using xmms to play your mp3's. Try to right-click options > preferences > output plugins > diskwriter Select all the mp3 tracks you want, and they'll be converted to .wav in no time. fxf -- ______________________ Courtesy of SuSE Linux
On Sun, May 12, 2002 at 10:22:30AM -0700, neal mcdermott wrote:
Hi All,
At the moment I am learning how to use cdrecord and have been able to make data cds. I am now trying to make a music cd from mp3s, and am assuming that I will have to convert them to .wav files and then burn them to a disk.
I am wondering if anyone can recommend a good conversion tool, preferably one that comes with the personal edition of 8.0. I tried using sox but got the error message that it could not recognize .mp3 files.
I use mpg123 which should be on the CDs (at least it is on the Pro CDs). You want to convert them to cdr format, not wav for burning to CD. This is the script I use, just put the mp3 files in the ~/burn/data directory. #!/bin/bash # # This is a CD-R script for burning mp3 files directly to CD. # The mpg123 program converts mp3s to cdr format, and cdrecord burns # the tracks on the CD. # for I in /home/foo/burn/data/*.mp3 do mpg123 --cdr - "$I" | cdrecord dev=0,0,0 -audio -pad -v -speed=2 -nofix - done cdrecord dev=0,0,0 -fix #### Best Regards, Keith -- LPIC-2, MCSE, N+ Will we all fight for the right to be free? Got spam? Get spastic http://spastic.sourceforge.net
Below is my original query followed by the responses I got on the list as of yesterday. Thank you to anyone who has responded since then. Neal McDermott
Hi All,
At the moment I am learning how to use cdrecord and have been able to make data cds. I am now trying to make a music cd from mp3s, and am assuming that I will have to convert them to .wav files and then burn them to a disk.
I am wondering if anyone can recommend a good conversion tool, preferably one that comes with the personal edition of 8.0. I tried using sox but got the error message that it could not recognize .mp3 files.
One response I got was from Lew Wolfgang. I tried it and it was just what I was looking for: Hi Neil, I've had good luck with mpg123. It's been on previous SuSE distros and is probably on 8.0. If it's not, look on freshmeat. Just us it like this: mpg123 -s something.mpg >something.cdr The file format is not .wav, but in the format that may be burned directly by cdrecord if you do this: cdrecord -v speed=S dev=X,Y,Z -swab -pad -audio *.cdr (assumes X86 architecture. Don't use -swab on SPARC) Substitute the speed for your burner/cdrs and your own X,Y,Z config obtained by runnign cdrecord -scanbus. This will burn all the .cdr files in the directory that you're sitting in. Regards, Lew Wolfgang I also got a response from FX Fraipont who had a GUI based solution that I tried and it worked too: An easier way (imho) is using xmms to play your mp3's. Try to right-click options > preferences > output plugins > diskwriter Select all the mp3 tracks you want, and they'll be converted to .wav in no time. fxf Finally, I got this answer from Keith Winston which includes a script he uses. I haven't tried this one yet, but that is only because I don't know how to use a shell script yet, but as soon as I figure that out, I will give it a try. This is Keith Winston's solution: I use mpg123 which should be on the CDs (at least it is on the Pro CDs).
You want to convert them to cdr format, not wav for burning to CD.
This is the script I use, just put the mp3 files in the ~/burn/data directory.
#!/bin/bash # # This is a CD-R script for burning mp3 files directly to CD. # The mpg123 program converts mp3s to cdr format, and cdrecord burns # the tracks on the CD. #
for I in /home/foo/burn/data/*.mp3 do mpg123 --cdr - "$I" | cdrecord dev=0,0,0 -audio -pad -v -speed=2 -nofix - done cdrecord dev=0,0,0 -fix
####
Best Regards, Keith
Thank you again to all who responded. One final note, if like me you are using the personal edition of SuSE 8.0, then both of the programs mentioned above are included on your CDs. Neal McDermott
Anyone using YaST Online Update from the United Kingdom might like to try the following in the expert mode: server: ftp.mirror.ac.uk directory: /sites/ftp.suse.com/pub/suse I found it much faster than any of the official mirrors in the SuSE list. The site is the UK academic mirror site (formerly known as Hensa) and has some pretty substantial hardware. It's also updated very regularly. I think this would be a good site to go on the official SuSE list. Are there any special requirements for such sites? JDL
written by Lew Wolfgang:
Just us it like this:
mpg123 -s something.mpg >something.cdr
The file format is not .wav, but in the format that may be burned directly by cdrecord if you
Where is the difference between plain .WAV format and what mpg123 writes as above? Want to know about technical data and background. Thanks! Olli -- *º¤., ¸¸,.¤º*¨¨¨*¤ =Oliver@home= *º¤., ¸¸,.¤º*¨¨*¤ I http://www.bmw-roadster.de/Friends/Olli/olli.html I I http://www.bmw-roadster.de/Friends/friends.html I I http://groups.yahoo.com/group/VGAP-93 I I http://home.t-online.de/home/spacecraft.portal I
Telek0ma iBBMS - soon back online +49.4503.TRSi1/TRSi2 <<<
Keith Winston schrieb:
On Sun, May 12, 2002 at 10:22:30AM -0700, neal mcdermott wrote:
Hi All,
At the moment I am learning how to use cdrecord and have been able to make data cds. I am now trying to make a music cd from mp3s, and am assuming that I will have to convert them to .wav files and then burn them to a disk.
I am wondering if anyone can recommend a good conversion tool, preferably one that comes with the personal edition of 8.0. I tried using sox but got the error message that it could not recognize .mp3 files.
I use mpg123 which should be on the CDs (at least it is on the Pro CDs). You want to convert them to cdr format, not wav for burning to CD.
This is the script I use, just put the mp3 files in the ~/burn/data directory.
#!/bin/bash # # This is a CD-R script for burning mp3 files directly to CD. # The mpg123 program converts mp3s to cdr format, and cdrecord burns # the tracks on the CD. #
for I in /home/foo/burn/data/*.mp3 do mpg123 --cdr - "$I" | cdrecord dev=0,0,0 -audio -pad -v -speed=2 -nofix - done cdrecord dev=0,0,0 -fix
####
Best Regards, Keith
Damn! Someone posted this file: (I repost it to ensure I made no typo lapsus...) #!/bin/bash # # This is a CD-R script for burning mp3 files directly to CD. # The mpg123 program converts mp3s to cdr format, and cdrecord burns # the tracks on the CD. for I in /mnt/dir/*.mp3 do mpg123 --cdr - "$I" | cdrecord dev=0,1,0 -audio -pad -v -speed=2 -nofix - done cdrecord dev=0,1,0 -fix I now tried it out and ruined one. :-( It does not properly convert the MP3s to WAV. These errors occur: 1. It converts to a zero length file, meaning that it will burn a track size of 0 MB audio 2. cdrecord aborts with: Track 1 has unknown length. Cannot open new session. 3. The disk cannot be fixated in the end. cdrecords aborts with: Cannot fixate without track list (not yet implemented) Now, how can I fix the script to work it out? Maybe I just mis-spelled or mistyped something. Do you find the error? -- *º¤., ¸¸,.¤º*¨¨¨*¤ =Oliver@home= *º¤., ¸¸,.¤º*¨¨*¤ I http://www.bmw-roadster.de/Friends/Olli/olli.html I I http://www.bmw-roadster.de/Friends/friends.html I I http://groups.yahoo.com/group/VGAP-93 I I http://home.t-online.de/home/spacecraft.portal I
Telek0ma iBBMS - soon back online +49.4503.TRSi1/TRSi2 <<<
Sorry, replied to old thread instead of creating a new one. Fixed now. Keith Winston schrieb:
On Sun, May 12, 2002 at 10:22:30AM -0700, neal mcdermott wrote:
Hi All,
At the moment I am learning how to use cdrecord and have been able to make data cds. I am now trying to make a music cd from mp3s, and am assuming that I will have to convert them to .wav files and then burn them to a disk.
I am wondering if anyone can recommend a good conversion tool, preferably one that comes with the personal edition of 8.0. I tried using sox but got the error message that it could not recognize .mp3 files.
I use mpg123 which should be on the CDs (at least it is on the Pro CDs). You want to convert them to cdr format, not wav for burning to CD.
This is the script I use, just put the mp3 files in the ~/burn/data directory.
#!/bin/bash # # This is a CD-R script for burning mp3 files directly to CD. # The mpg123 program converts mp3s to cdr format, and cdrecord burns # the tracks on the CD. #
for I in /home/foo/burn/data/*.mp3 do mpg123 --cdr - "$I" | cdrecord dev=0,0,0 -audio -pad -v -speed=2 -nofix - done cdrecord dev=0,0,0 -fix
####
Best Regards, Keith
Damn! Someone posted this file: (I repost it to ensure I made no typo lapsus...) #!/bin/bash # # This is a CD-R script for burning mp3 files directly to CD. # The mpg123 program converts mp3s to cdr format, and cdrecord burns # the tracks on the CD. for I in /mnt/dir/*.mp3 do mpg123 --cdr - "$I" | cdrecord dev=0,1,0 -audio -pad -v -speed=2 -nofix - done cdrecord dev=0,1,0 -fix I now tried it out and ruined one. :-( It does not properly convert the MP3s to WAV. These errors occur: 1. It converts to a zero length file, meaning that it will burn a track size of 0 MB audio 2. cdrecord aborts with: Track 1 has unknown length. Cannot open new session. 3. The disk cannot be fixated in the end. cdrecords aborts with: Cannot fixate without track list (not yet implemented) Now, how can I fix the script to work it out? Maybe I just mis-spelled or mistyped something. Do you find the error? -- *º¤., ¸¸,.¤º*¨¨¨*¤ =Oliver@home= *º¤., ¸¸,.¤º*¨¨*¤ I http://www.bmw-roadster.de/Friends/Olli/olli.html I I http://www.bmw-roadster.de/Friends/friends.html I I http://groups.yahoo.com/group/VGAP-93 I I http://home.t-online.de/home/spacecraft.portal I
Telek0ma iBBMS - soon back online +49.4503.TRSi1/TRSi2 <<<
-- To unsubscribe send e-mail to suse-linux-e-unsubscribe@suse.com For additional commands send e-mail to suse-linux-e-help@suse.com Also check the archives at http://lists.suse.com
sent this out on june 9th, but it never appeared on list, did it? written by Lew Wolfgang:
Just us it like this:
mpg123 -s something.mpg >something.cdr
The file format is not .wav, but in the format that may be burned directly by cdrecord if you
Where is the difference between plain .WAV format and what mpg123 writes as above? Want to know about technical data and background. Thanks! Olli -- *º¤., ¸¸,.¤º*¨¨¨*¤ =Oliver@home= *º¤., ¸¸,.¤º*¨¨*¤ I http://www.bmw-roadster.de/Friends/Olli/olli.html I I http://www.bmw-roadster.de/Friends/friends.html I I http://groups.yahoo.com/group/VGAP-93 I I http://home.t-online.de/home/spacecraft.portal I
Telek0ma iBBMS - soon back online +49.4503.TRSi1/TRSi2 <<<
participants (6)
-
FX Fraipont
-
John Lamb
-
Keith Winston
-
Lewis E. Wolfgang
-
neal mcdermott
-
Oliver Ob