个人工具

UbuntuHelp:AudioCDCreation

来自Ubuntu中文

跳转至: 导航, 搜索


Ubuntu contains Serpentine, which allows for drag and drop audio cd creation. Starting Serpentine is as simple as putting a blank writable CD in your burner - you should see a popup that asks which type of CD you wish to burn. Click the "Create Audio CD" button, and Serpentine will launch. Otherwise, start Serpentine through Applications --> Sound & Video --> Serpentine Audio-CD Creator. For more information on how to use Serpentine, see SerpentineHowTo AudioCDCreation?action=AttachFile&do=get&target=Screenshot-Serpentine.png

How to Create an Audio CD from the Shell

Here's how to make an audio CD from the console. cdrecord will create audio CDs from wav files. To convert your ogg vorbis files to wav files is as easy as

 $ oggdec Mysong.ogg

A song takes about 7 seconds to decode on my machine. For flac files:

 $ flac --decode Mysong.flac

This takes about 4 seconds to decode on my machine. Or to copy an audio CD:

 $ cdparanoia -B && eject

will rip the current CD in the drive to the current directory, in separate WAV files. To burn the CD, just type::

 $ cdrecord dev=device-name \*.wav

Replace device-name with the device name for your cd burner [/dev/hdd on my machine].