个人工具

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

来自Ubuntu中文

跳转至: 导航, 搜索
 
第1行: 第1行:
 
{{From|https://help.ubuntu.com/community/AudioCDCreation}}
 
{{From|https://help.ubuntu.com/community/AudioCDCreation}}
 
{{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 [[UbuntuHelp:SerpentineHowTo|SerpentineHowTo]]
{{https://help.ubuntu.com/community/AudioCDCreation?action=AttachFile&do=get&target=Screenshot-Serpentine.png%7D%7D
+
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.
第10行: 第10行:
 
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
 
<pre><nowiki>
 
<pre><nowiki>
$ oggdec Mysong.ogg
+
$ oggdec Mysong.ogg
 
</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>
$ flac --decode Mysong.flac
+
$ flac --decode Mysong.flac
 
</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>
$ cdparanoia -B && eject
+
$ cdparanoia -B && eject
 
</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>
$ cdrecord dev=device-name \*.wav
+
$ cdrecord dev=device-name \*.wav
 
</nowiki></pre>
 
</nowiki></pre>
 
Replace device-name with the device name for your cd burner [/dev/hdd
 
Replace device-name with the device name for your cd burner [/dev/hdd

2010年5月19日 (三) 21:38的最新版本


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