Changes between Version 5 and Version 6 of Cdrtools


Ignore:
Timestamp:
05/29/2006 04:12:09 PM (18 years ago)
Author:
andy@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cdrtools

    v5 v6  
    3030IMPORTANT: never report problems with charset set support directly to Joerg Schilling!
    3131
     32----
     33
     34== Burn mp3s onto an Audio CD ==
     35
     36If you have lame installed you can burn mp3s to a CD that will play in an ordinary audio CD player with a simple script like this
     37{{{
     38#!/bin/bash -e
     39count=0
     40
     41for TRACK in *
     42do
     43lame --decode "$TRACK" $((++count)).wav
     44rm -f "$TRACK"
     45done
     46
     47cdrecord dev=/dev/hdc -audio -pad $(ls)
     48}}}
     49Change dev=/dev/hdc to suit your system.
     50
     51Get a copy of the tracks you want into one folder, cd into the folder, put a blank CD in the drive and then run the script
     52
     53
    3254[wiki:CDWritingUtilities Up][[br]]
    3355[wiki:BlfsNotes Top]