<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://antix.mepis.org/skins/common/feed.css?270"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://antix.mepis.org/index.php?title=Command_Line_Apps_ripit&amp;feed=atom&amp;action=history</id>
		<title>Command Line Apps ripit - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://antix.mepis.org/index.php?title=Command_Line_Apps_ripit&amp;feed=atom&amp;action=history"/>
		<link rel="alternate" type="text/html" href="http://antix.mepis.org/index.php?title=Command_Line_Apps_ripit&amp;action=history"/>
		<updated>2013-05-23T19:33:16Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.16.1</generator>

	<entry>
		<id>http://antix.mepis.org/index.php?title=Command_Line_Apps_ripit&amp;diff=2799&amp;oldid=prev</id>
		<title>Anticapitalista: /* ripit audio converter */</title>
		<link rel="alternate" type="text/html" href="http://antix.mepis.org/index.php?title=Command_Line_Apps_ripit&amp;diff=2799&amp;oldid=prev"/>
				<updated>2010-01-24T13:06:47Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;span class=&quot;autocomment&quot;&gt;ripit audio converter&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==ripit audio converter==&lt;br /&gt;
&lt;br /&gt;
From the man page.&lt;br /&gt;
&lt;br /&gt;
A Perl script that makes it a lot easier to create &amp;quot;mp3&amp;quot; files from an audio CD. RipIT supports Flac, Lame, Oggenc, Faac, mp4als and Musepack. Artist and song titles are retrieved either with the CDDB_get.pm from freedb.org  or using  WebService::MusicBrainz.pm from MusicBrainz.org. It is  possible  to  submit  and edit CDDB entries at freedb.org, submission of MusicBrainz data need a login.  Hidden tracks and ghost songs are detected and split into chunks of sound, a toc or inf files permit to burn the WAV files with text and no gaps in DAO mode. Several encoder formats and qualities can be used at the same time and encoded into different directories.&lt;br /&gt;
&lt;br /&gt;
EXAMPLES:&lt;br /&gt;
&lt;br /&gt;
To specify a CD device, type&lt;br /&gt;
&lt;br /&gt;
              ripit --device /dev/sr1&lt;br /&gt;
&lt;br /&gt;
To specify the output directory, type&lt;br /&gt;
&lt;br /&gt;
              ripit --outputdir /foo/paths/&lt;br /&gt;
&lt;br /&gt;
To rip and encode a special track selection, type&lt;br /&gt;
&lt;br /&gt;
              ripit 1,3-6,8-11&lt;br /&gt;
&lt;br /&gt;
To use several encoders in the same run, type&lt;br /&gt;
&lt;br /&gt;
              ripit --coder 1,0,2 --quality 3,5,6&lt;br /&gt;
&lt;br /&gt;
To use Lame with variable bitrate (VBR), type&lt;br /&gt;
&lt;br /&gt;
              ripit --vbrmode new --bitrate 0&lt;br /&gt;
&lt;br /&gt;
Note, one should reset the --bitrate to 0 (zero) if the -b option of Lame is not desired. According to VBR mode in Lame, use &amp;quot;new&amp;quot; or &amp;quot;old&amp;quot;.&lt;br /&gt;
              &lt;br /&gt;
It is recommended to use the preset switches for Lame, (see Lame man-page) and specify fast encoding  with  --vbr‐mode new (use --vbrmode old to switch off the fast encoding)&lt;br /&gt;
&lt;br /&gt;
              ripit --preset extreme --vbrmode new&lt;br /&gt;
&lt;br /&gt;
To  pass options related to the encoder use the according encoder option switch: e.g. to use the managed mode with oggenc:&lt;br /&gt;
&lt;br /&gt;
              ripit -c 1 --oggencopt &amp;quot;--managed -b 192 -M 224 -m 96&amp;quot; --quality &amp;quot;off&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Normalize your wave-files prior to encoding:&lt;br /&gt;
&lt;br /&gt;
              ripit --normalize&lt;br /&gt;
&lt;br /&gt;
Normalize your files to -18dB using &amp;quot;mix mode&amp;quot; (see normalize documentation)&lt;br /&gt;
&lt;br /&gt;
              ripit --normalize --normopt &amp;quot;-m -a -18dB&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To define a directory template where the sound files should  go, type&lt;br /&gt;
&lt;br /&gt;
              ripit --dirtemplate '&amp;quot;$artist - $year&amp;quot;'&lt;br /&gt;
&lt;br /&gt;
To create 2 directory levels, as used in other environments, type&lt;br /&gt;
&lt;br /&gt;
              ripit --dirtemplate '&amp;quot;$artist/$album&amp;quot;'&lt;br /&gt;
&lt;br /&gt;
To save a config file in ~/home/.ripit/ with options: to use Lame and Oggenc, don't create a m3u file, archive the CDDB entry files in ~/.cddb/&amp;quot;category&amp;quot;/ and to eject CD when done, type&lt;br /&gt;
&lt;br /&gt;
              ripit --coder 0,1 --playlist 0 --archive --eject --save&lt;br /&gt;
&lt;br /&gt;
To do the job without any interaction, type&lt;br /&gt;
&lt;br /&gt;
              ripit --nointeraction&lt;br /&gt;
&lt;br /&gt;
To use a network for encoding, make sure that the output paths are equal on all machines!&lt;br /&gt;
&lt;br /&gt;
              ripit --sshlist sun,saturn,earth&lt;br /&gt;
&lt;br /&gt;
where  sun,  saturn and earth are remote machines on which a user can login via ssh without entering a password or passphrase! Note that the paths must be equal for the user on all remote machines!  If the login is  different  on some machines, try&lt;br /&gt;
&lt;br /&gt;
              ripit --sshlist login1@sun,login2@saturn,login3@earth&lt;br /&gt;
&lt;br /&gt;
If  there is &amp;quot;no&amp;quot; identical path on the remote machines, then the user might enter e.g. /tmp/ as output directory.&lt;br /&gt;
If the file-system is not mounted on each remote machine, one can try to copy the  wavs  to  the  remote  machines using option --scp.&lt;br /&gt;
&lt;br /&gt;
              ripit --sshlist sun,saturn,earth --scp&lt;br /&gt;
&lt;br /&gt;
Check for ghost songs and trim very long lead-in/out:&lt;br /&gt;
&lt;br /&gt;
              ripit --ghost --prepend 1.0 --extend 1.0&lt;br /&gt;
&lt;br /&gt;
Rip only first 30 seconds of each track (useful for testing)&lt;br /&gt;
&lt;br /&gt;
              ripit --span 0-30&lt;br /&gt;
&lt;br /&gt;
Encode the same format in 2 qualities, at low quality for a portable, at high quality for home:&lt;br /&gt;
&lt;br /&gt;
              ripit --dirtemplate '&amp;quot;cbr/$artist/$year ‐ $album&amp;quot;' \&lt;br /&gt;
                    --dirtemplate '&amp;quot;preset/$artist ‐ $album&amp;quot;' \&lt;br /&gt;
                    --coder 0,0 --bitrate off --quality off,off \&lt;br /&gt;
                    --lameopt &amp;quot;-b 128 -q 2;--preset extreme&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Force RipIT to use one and the same directory for all sound files:&lt;br /&gt;
&lt;br /&gt;
              ripit --dirtemplate '&amp;quot;/&amp;quot;' --outputdir=&amp;quot;/media/sound&amp;quot; \&lt;br /&gt;
                    --resume&lt;/div&gt;</summary>
		<author><name>Anticapitalista</name></author>	</entry>

	</feed>