r183@frost: data | 2005-10-05 01:09:04 +0300
[clinton/abcde.git] / TODO
1 TODO:
2 ----
3 * flacdecode (to extract files from a -1 flac file) (ALMOST READY!)
4
5 * Get the echo instances to behave consistently
6
7 * read the TOC and CDTEXT files and store them
8
9 * read_and_encode_and_tag? :)
10 * Customizable post-read/encode/tag hooks
11 (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=114851)
12
13 * Separate local/dist tagging: if local encoding, the tags are added on the
14 encoding phase. If remote, the tracks need tagging.
15 And also add the possibility to add this information via oggenc directly
16 instead of explicitly invoking vorbiscomment.
17
18 * Maybe repair files when they have the same name in the original CD?
19 (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=205634)
20
21 * Separate the different output encodings, so a user can read and encode one
22 format and then encode another one, later, from the same wavs. Right now,
23 the same status line is used for all formats, so a re-encoding is rejected
24 since abcde sees the encoding already finished. Same with tags and moves.
25
26 * Support UTF-8 tags
27
28 * From slashdot: IMHO the most important aspect of an auto-ripper, is its
29 error-handling: what happens if a CD is too scratched to rip? How should it
30 react if someone tries to rip the exact same CD? make a new rip with another
31 name ? silently overwrite the old rip? etc.
32
33 Review the things that abcde does ;)
34
35 * When cdparanoia encounters a problem (disk full, data track) when abcde
36 is run in batch mode, abcde still continues, but batch mode is disabled.
37 I.e. instead of normalizing all tracks together, they are normalized
38 seperately, instead of running "lame --nogap" on all wavs, lame is
39 invoked once per wav.
40
41 Abcde should halt when a problem occurs, so it can be manually resolved.
42
43 * AAC support (faac should be free?)
44
45 * I used abcde to rip a cd in batch normalizing mode to mp3 (mp2
46 actually) format with toolame. The first part went fine, until toolame
47 started. That resulted in an error. Here is the relevant part of the
48 logfile made by 'abcde -D 2>logfile':
49
50 -----
51 + TRACKFILES= track1.wav track2.wav track3.wav track4.wav
52 + nice -n 10 toolame --nogap track1.wav track2.wav track3.wav track4.wav
53 toolame: unrec option -
54 toolame: unrec option n
55 toolame: -p model must be 1 or 2, not track1.wav
56 + RETURN=1
57 + '[' 1 '!=' 0 ']'
58 + echo 'batch-encode: returned code 1'
59 -----
60
61 In my abcde.conf I have "BATCH=y". Setting this to "BATCH=n" solves
62 this. "BATCH=y" is responsible for inserting '--nogap'. I don't know
63 what that is supposed to be doing, but it is only meant for use with
64 lame, and I am using toolame as that is free software: "LAME=toolame"
65 in abcde.conf.
66
67 I see two possible solutions:
68
69 1. Check if LAME really is lame and not toolame or some other mp3
70 encoder. If so, then go ahead and insert '--nogap' in the generated
71 command. Else don't.
72
73 2. Don't tie the '--nogap' insertion to the setting of BATCH. Make a
74 new option NOGAP or something for that.
75
76 Other than that, abcde is a brilliant time saver. Thanks!
77
78 BTW, dpkg -l toolame:
79 ii toolame 02i-2 MPEG-1 layer 2 audio encoder
80
81 *
82
83 abcde -a read,encode -o ogg,flac,wav (it creates and encodes the 3 formats)
84
85 abcde -a tag,move,clean (it tags and moves Ogg/Vorbis and erases everything
86 else...)
87
88 I will have to add a "-f" as force to erase the directory if we have encoded
89 something else than what we have already moved, so that we dont destroy
90 formats that we want to keep.
91