Posts tagged as:

cd burning

Recently I decided to burn selected MP3 files on an audio CD from command prompt.
First, you need to convert your mp3 (myfile.mp3) into .wav (myfile.wav) file:
$ mpg123 -w myfile.wav myfile.mp3
Use above command to convert all files to mp3
Then burn all .wav file on to the CD
# cdrecord -dev=ATA:1,0,0 -eject speed=4 -pad -audio *.wav
For more information [...]

{ 2 comments }

Under Linux you can use tool called cdrecored (use to record audio or data Compact Discs) with mkisofs (use to create an hybrid SO9660/JOLIET/HFS filesystem with optional Rock Ridge attributes ) for this purpose.
Step #1: Create first session as follows
1) Create an iso image first:
# mkisofs -R -o /tmp/cd.iso /backup/06-07-2004/
Where,

-R [...]

{ 0 comments }