个人工具

“UbuntuHelp:AudioCDCreation”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
(新页面: {{From|https://help.ubuntu.com/community/AudioCDCreation}} {{Languages|UbuntuHelp:AudioCDCreation}} Ubuntu contains [http://s1x.homelinux.net/projects/serpentine Serpentine], which allows...)
 
第2行: 第2行:
 
{{Languages|UbuntuHelp:AudioCDCreation}}
 
{{Languages|UbuntuHelp:AudioCDCreation}}
 
Ubuntu contains [http://s1x.homelinux.net/projects/serpentine Serpentine], which allows for drag and drop audio cd creation.
 
Ubuntu contains [http://s1x.homelinux.net/projects/serpentine 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'''.
 
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
 
For more information on how to use Serpentine, see SerpentineHowTo
 
 
https://help.ubuntu.com/community/AudioCDCreation?action=AttachFile&do=get&target=Screenshot-Serpentine.png
 
https://help.ubuntu.com/community/AudioCDCreation?action=AttachFile&do=get&target=Screenshot-Serpentine.png
 
 
=== How to Create an Audio CD from the Shell ===
 
=== How to Create an Audio CD from the Shell ===
 
 
Here's how to make an audio CD from the console.
 
Here's how to make an audio CD from the console.
 
 
'''cdrecord''' will create audio CDs from wav files.
 
'''cdrecord''' will create audio CDs from wav files.
 
To convert your ogg vorbis files to wav files is as easy as
 
To convert your ogg vorbis files to wav files is as easy as
第19行: 第13行:
 
</nowiki></pre>
 
</nowiki></pre>
 
A song takes about 7 seconds to decode on my machine.
 
A song takes about 7 seconds to decode on my machine.
 
 
For flac files:
 
For flac files:
 
<pre><nowiki>
 
<pre><nowiki>
第25行: 第18行:
 
</nowiki></pre>
 
</nowiki></pre>
 
This takes about 4 seconds to decode on my machine.
 
This takes about 4 seconds to decode on my machine.
 
 
Or to copy an audio CD:
 
Or to copy an audio CD:
 
<pre><nowiki>
 
<pre><nowiki>
第31行: 第23行:
 
</nowiki></pre>
 
</nowiki></pre>
 
will rip the current CD in the drive to the current directory, in separate WAV files.
 
will rip the current CD in the drive to the current directory, in separate WAV files.
 
 
To burn the CD, just type::
 
To burn the CD, just type::
 
<pre><nowiki>
 
<pre><nowiki>

2007年11月30日 (五) 16:10的版本


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].