• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Makefile.amH A D25-Apr-200488 31

Makefile.inH A D30-Jul-20068.2 KiB300250

Readme-DiffsH A D10-Sep-2001281 74

Readme-id3wrapperH A D10-Sep-20012.3 KiB4136

cdparanoia.diffH A D06-Jan-2000402 1311

encoder.diffH A D06-Jan-200093 54

Readme-Diffs

1cdparanoia.diff and encoder.diff contain patches for cdparanoia, and the (old
2and maybe not longer used encoder), to fix the output issues with MP3c.
3
4To apply these patches, cd to the source-directory of cdparanoia/encoder
5and type "cat <location of the diff-file> | patch -p1".
6
7

Readme-id3wrapper

1This program is a perl-wrapper for the MP3::Tag modul, contributed by
2Hans Engelen <hans.engelen@pandora.be>.
3Use it to write both ID1 and ID2 in one step. Note that this program is not
4a tag-editor itself, you need the MP3::Tag modul from CPAN as well.
5Try http://tagged.sourceforge.net/
6
7To use it, copy it in your path, and edit the tag-program in MP3c to use
8a commandline like this:
9
10mp3_info_prg = "id3wrapper --v1 --v2 --artist "%1" --song "%2" --album "%3" --ge
11nre "%8" --year=%5 --track=%b --comment "%6" "%7""
12
13These are the instructions from the author itself:
14> Very well, please find my small script attached together with an .mp3crc file
15> showing the commandline settings to use (or an example of them). As I said it
16> is nothing fancy and basicly just a quick and dirty wrapper around the
17> MP3::Tag module I spoke of which really does all the work. It is in fact so
18> straightforward a piece of code that I don't even feel inclined in any way to
19> take any credit it at all. I just hope someone else finds it of use too. To
20> see the commandline options just start it up with --help on the command line
21> (or any other unknown function for that matter as that will show the help
22> screen). You need to get the MP3::Tag module from CPAN, it's a common enough
23> module I think, it is part of a package called Tagged which can also be found
24> on sourceforge (http://tagged.sourceforge.net/). I have tried it with
25> versions 0.30 and the newer 0.40 of tagged.
26>
27> Feel free to include or offer the script any way you see fit. There is only
28> one thing some people might want to change in the script itself. As I always
29> encode with the same set of options I have the script set an id3v2 frame to
30> reflect what those are. Some people might want to edit this or comment it out
31> completely. It is marked in the script with a comment so it should be easy to
32> find. The commandline option '--noenc' is there to disable writing it if so
33> desired.
34>
35> One thing to point out is that this script is not written to be a tag editor.
36> All it is supposed to do (though it can easily be adapted to do more) was to
37> write both id3v1 and id3v2 tags on brand new mp3 files created by your
38> program. As it stands now it is not very suited to (re-)edit tags of existing
39> files that already have some tags.
40
41