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

..03-May-2022-

examples/H03-May-2022-5,2693,179

lib/H03-May-2022-23,85315,254

t/H03-May-2022-1,283917

tk-tag/H03-May-2022-1,3181,160

ChangesH A D23-Mar-201951.6 KiB1,264973

MANIFESTH A D23-Mar-20191.7 KiB6766

META.jsonH A D23-Mar-2019920 4140

META.ymlH A D23-Mar-2019563 2322

Makefile.PLH A D28-Nov-20091.7 KiB5740

README.shrinkH A D11-Jan-2006789 2214

TODOH A D29-Sep-20161.8 KiB5738

cddb.tmH A D29-May-20041.2 KiB4928

cddb.tmpH A D09-Feb-20041.1 KiB4948

data_pod.PLH A D28-Nov-20094.6 KiB169117

README.shrink

1Due to a bug (fixed in version 0.9701) when multiple edits were done on
2the same file, several K of zero bytes may have been inserted between
3the ID3v2 tag and the body of audio.  These bytes were not included in
4the count of bytes of the tag.
5
6To fix files with this unwanted padding, one can do the following:
7
8  a) include the byte count of the padding into the tag size (quick);
9
10  b) Remove the padding (will require rewriting of the file, so may take
11     some time).
12
13To do "a", enable the option 'id3v2_mergepadding' when you update tags.
14
15To do "b" enable the option 'id3v2_shrink' when you update tags.  (With
16method 'update_tag', you may want to specify the $force2 option; with mp3info2,
17use -2 option).
18
19Example:
20
21  mp3info2 -C "~id3v2_shrink=1~id3v2_mergepadding=1" -u2 -R .
22