File: README

package info (click to toggle)
abcde 1.0.1.1-1
  • links: PTS
  • area: contrib
  • in suites: potato
  • size: 128 kB
  • ctags: 14
  • sloc: sh: 671; makefile: 62
file content (56 lines) | stat: -rw-r--r-- 2,582 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
ABCDE
=====
abcde is a frontend command-line utility (actually, a shell script) that
grabs tracks off a CD, encodes them to mp3 format, and tags them, all in
one go.

Your finished MP3's are stored in a subdirectory of the current directory
(named after the artist) with a filename based on the track title. Spaces
are replaced by underscores, and apostrophes and control codes are filtered
out. The end result usually looks like: Metallica/Dont_Tread_On_Me.mp3
In the future this filename munging will be customizable.

abcde uses it's own CDDB routines (using wget) instead of using xmcd's cda
utility (like cdr.pl and ripenc do) - this allows abcde to run as a user,
saving those valuable root consoles for more productive tasks like IRC'ing.
;)

Need to go through an HTTP proxy for CDDB access? No problem, just export
your http_proxy variable first so wget can see it.

Low on disk space? abcde has different algorithms to schedule ripping and
encoding - you can optimize for speed and disc read completion (-l 1, the
default), or for disk conservation (-l 2).

abcde can also take advantage of SMP systems, just like make. Try
'abcde -j 2' - it'll run two encoder processes while it rips the next
track.

abcde requires the following backend tools to work:

* An MP3 encoder (lame, gogo, bladeenc, l3enc, etc). abcde defaults to using
  lame. To change this, edit /etc/abcde.conf, and uncomment and change
  the ENCODERSYNTAX line. Any MP3 encoder that takes two filenames on the
  command line, one for input, one for output, will work.
  You can get lame at: http://www.sulaco.org/mp3/
  You can get gogo at: http://www.kurims.kyoto-u.ac.jp/~shigeo/gogo_e.html
  You can get BladeEnc at: http://home8.swipnet.se/~w-82625/
* CD Paranoia, an audio CD reading utility,
* Or cdda2wav, the audio CD reading utility cdparanoia was born from.
* cd-discid, a CDDB DiscID reading program. Formerly bundled with abcde.
  It's available in Debian or at http://frantica.lly.org/~rcw/cd-discid/.
* wget, an HTTP retrieval program.
* id3, an id3 tagging program. Available at: http://frantica.lly.org/~rcw/id3/

Potential problems:

Having trouble getting cdparanoia to read from your drive as a user?
Add yourself to the cdrom group, change the permissions on your cdrom device
to 660, and if you have a SCSI cdrom drive, check the permissions on
/dev/sg* as well.

Running out of disk space for .wav files but don't want to use -l 2? Put them
in a different location by adding WAVOUTPUTDIR=/some/other/path to your
/etc/abcde.conf or ~/.abcde.conf.
--
Robert Woodcock <rcw@debian.org>