id3 0.5.0 → 1.0.0.pre4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +14 -0
- data/LICENSE.html +8 -1
- data/README.md +39 -0
- data/docs/ID3_comparison.html +10 -2
- data/docs/ID3_comparison2.html +29 -21
- data/docs/ID3v2_frames_overview.txt +172 -35
- data/{lib → docs}/hexdump.rb +0 -0
- data/docs/index.html +29 -9
- data/lib/helpers/hash_extensions.rb +20 -0
- data/lib/helpers/hexdump.rb +136 -0
- data/lib/helpers/invert_hash.rb +128 -0
- data/lib/helpers/recursive_helper.rb +39 -0
- data/lib/helpers/restricted_ordered_hash.rb +88 -0
- data/lib/helpers/ruby_1.8_1.9_compatibility.rb +62 -0
- data/lib/id3.rb +23 -1252
- data/lib/id3/audiofile.rb +261 -0
- data/lib/id3/constants.rb +292 -0
- data/lib/id3/frame.rb +178 -0
- data/lib/id3/frame_array.rb +19 -0
- data/lib/id3/generic_tag.rb +73 -0
- data/lib/id3/id3.rb +159 -0
- data/lib/id3/io_extensions.rb +44 -0
- data/lib/id3/module_methods.rb +127 -0
- data/lib/id3/string_extensions.rb +40 -0
- data/lib/id3/tag1.rb +131 -0
- data/lib/id3/tag2.rb +261 -0
- metadata +87 -58
- data/README +0 -18
- data/docs/ID3v2_frames_comparison.txt +0 -197
- data/lib/invert_hash.rb +0 -105
data/CHANGES
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
= id3 changes
|
2
2
|
|
3
|
+
=== 1.0.0_pre4 (2011-10-11 .. 2011-10-20 working on pre-release of 1.0.0 version)
|
4
|
+
|
5
|
+
* changed format of Frame.new() initializer method
|
6
|
+
* added compatibility wtih Ruby 1.9 for id3 library
|
7
|
+
* added compatibility wtih Ruby 1.9 for hexdump extension of String
|
8
|
+
* updated invert_hash extension
|
9
|
+
* added extensions to String and IO / File classes, for additional use cases.
|
10
|
+
* added additional ID3 class methods , with same names as extensions to String and IO / File classes
|
11
|
+
* added support for reading ID3v2 tag from remote location / partially copied MP3-file
|
12
|
+
* fixed bugs in reporting ID3v1 tag version
|
13
|
+
* the library now parses PLAYCOUNTER and POPULARIMETER frames correctly
|
14
|
+
* the library now handles multiple appearances of ID3v2 frames correcly (returning an ID3::FrameArray < Array )
|
15
|
+
* added examples to the code
|
16
|
+
|
3
17
|
=== 0.5.0 (2008-08-18)
|
4
18
|
|
5
19
|
* Added write support
|
data/LICENSE.html
CHANGED
@@ -129,12 +129,19 @@ WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.<P>
|
|
129
129
|
<font color=red>
|
130
130
|
Addendum A. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE
|
131
131
|
DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
132
|
-
<
|
132
|
+
<p>
|
133
133
|
IN NO EVENT WILL THE COPYRIGHT HOLDERS BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
|
134
134
|
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO
|
135
135
|
LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR USELESS OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF
|
136
136
|
THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF THE COPYRIGHT HOLDERS OR OTHER PARTY HAS BEEN ADVISED OF
|
137
137
|
THE POSSIBILITY OF SUCH DAMAGES.
|
138
|
+
</font>
|
139
|
+
</p><p>
|
140
|
+
<font color=red>
|
141
|
+
Addendum B. IF YOU WORK DIRECTLY OR INDIRECTLY FOR THE RECORDING INDUSTRY, OR ANY INTEREST GROUP OF THE RECORDING INDUSTRY SUCH AS RIAA, GEMA, ...
|
142
|
+
YOUR ARE <b>EXPLICITLY EXCLUDED FROM THIS LICENSE</b> AND ARE NOT AUTHORIZED TO COPY OR USE THIS SOFTWARE IN ANY WAY. IF IN DOUBT, PLEASE CONTACT THE AUTHOR OF THIS SOFTWARE.
|
143
|
+
</p>
|
144
|
+
|
138
145
|
</font>
|
139
146
|
|
140
147
|
<center>The End</center>
|
data/README.md
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
# ID3
|
2
|
+
native Ruby ID3 tag library, which does not depend on architecture-dependent C-libraries.
|
3
|
+
It supports reading and writing ID3-tag versions 1.0, 1.1, and 2.2.x, 2,3.x, 2,4.x
|
4
|
+
|
5
|
+
Initial release was 12 Oct 2002
|
6
|
+
|
7
|
+
The library uses Metaprogramming at it's core - see ./lib/id3/frame.rb
|
8
|
+
|
9
|
+
# NOTE
|
10
|
+
the latest version on the trunk is version 1.0.0_pre4 , a pre-release which aims at Ruby 1.9 compatibility.
|
11
|
+
|
12
|
+
Due to a RubyGems.org hickup I currently can not push the pre4 release as a Gem, but will do so soon.
|
13
|
+
|
14
|
+
|
15
|
+
Author: Tilo Sloboda <MyFristname.MyLastname At GoogleMail>
|
16
|
+
|
17
|
+
Home Page: http://www.unixgods.org/~tilo/Ruby/ID3
|
18
|
+
|
19
|
+
License: http://www.unixgods.org/~tilo/artistic-license.html
|
20
|
+
|
21
|
+
GitHub: https://github.com/tilo/ID3
|
22
|
+
|
23
|
+
RubyForge: http://rubyforge.org/projects/id3/
|
24
|
+
|
25
|
+
RAA: http://raa.ruby-lang.org/project/id3tag/ (yes, it's that old :) )
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
Versions:
|
30
|
+
|
31
|
+
* 1.0.0_pre4 [2012-07-07]
|
32
|
+
* 0.5.1 (2011-03-31)
|
33
|
+
* 0.5.0 (2008-08-18)
|
34
|
+
* 0.4.1 (2008-08-17)
|
35
|
+
* 0.4.0 (2008-08-16)
|
36
|
+
* 0.4 (2004-12-28)
|
37
|
+
* 0.3 (2004-12-28)
|
38
|
+
* 0.2 (2002-11-06)
|
39
|
+
* 0.1 [2002-10-12]
|
data/docs/ID3_comparison.html
CHANGED
@@ -1,7 +1,15 @@
|
|
1
1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head>
|
2
2
|
<title>Comparison of ID3 Fields/Frames</title>
|
3
3
|
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
|
4
|
-
</head><body
|
4
|
+
</head><body>
|
5
|
+
<table width=100%>
|
6
|
+
<tr>
|
7
|
+
<TD ALIGN=RIGHT valign=bottom ><a href='http://www.linode.com/?r=0e8782e0edf7aa7f525084f7e97b3ef099447621'><IMG SRC='/linode_logo_gray.png' width=160></a></TD>
|
8
|
+
</tr>
|
9
|
+
</table>
|
10
|
+
|
11
|
+
|
12
|
+
<br>
|
5
13
|
|
6
14
|
<h1 align="center">Comparison of ID3 Standards<br><small><small><small><b>by Tilo Sloboda <tools@unixgods.org></b></small></small></small>
|
7
15
|
</h1>
|
@@ -2118,4 +2126,4 @@ The symbolic name CRYPTEDMETA is not part of id3lib-3.8.0,<br>
|
|
2118
2126
|
|
2119
2127
|
<br>
|
2120
2128
|
|
2121
|
-
</body></html>
|
2129
|
+
</body></html>
|
data/docs/ID3_comparison2.html
CHANGED
@@ -1,33 +1,42 @@
|
|
1
1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
-
<html><
|
3
|
-
<title>Comparison of ID3 Fields/Frames</title>
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
2
|
+
<html><header>
|
3
|
+
<title>Side-by-side Comparison of ID3 Versions and Fields / Frames</title>
|
9
4
|
|
10
5
|
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
|
11
|
-
</head>
|
12
|
-
<body><br>
|
13
|
-
|
14
6
|
|
7
|
+
<style>
|
8
|
+
body {
|
9
|
+
font-family: "Droid Sans", helvetica, arial, sans-serif; /* on mobile device maybe better "Nobile" font */
|
10
|
+
}
|
11
|
+
</style>
|
12
|
+
|
13
|
+
</header>
|
14
|
+
<body>
|
15
|
+
<table width=100%>
|
16
|
+
<tr>
|
17
|
+
<TD ALIGN=RIGHT valign=bottom ><a href='http://www.linode.com/?r=0e8782e0edf7aa7f525084f7e97b3ef099447621'><IMG SRC='/linode_logo_gray.png' width=160></a></TD>
|
18
|
+
</tr>
|
19
|
+
</table>
|
15
20
|
|
16
|
-
<h1 align="center">Comparison of ID3 Standards<br>
|
17
|
-
<small><small><small><b>by Tilo Sloboda <tools-NOSPAM@unixgods.org></b></small></small></small>
|
18
|
-
</h1>
|
19
21
|
|
22
|
+
<br>
|
20
23
|
|
24
|
+
<h1 align="center">Side-by-side Comparison of ID3 Versions, Fields / Frames<br>
|
25
|
+
<small><small><small><b>by Tilo Sloboda, 2002</b></small></small></small>
|
26
|
+
</h1>
|
21
27
|
|
22
28
|
<br>
|
23
29
|
|
24
30
|
|
25
|
-
|
31
|
+
<p>
|
26
32
|
This document contains a side-by-side comparison over the frames used in
|
27
33
|
the 3 different versions of the informal ID3v2 standard: v2.2.0, v2.3.0 and
|
28
34
|
v2.4.0 and the ID3 versions 1.0 and 1.1 This document is a compilation of information which is available in the documents
|
29
35
|
listed below. The original documents Copyright notices apply.<br>
|
30
|
-
|
36
|
+
</p>
|
37
|
+
<p>
|
38
|
+
<b>Note: You can directly click-through to the definition of each frame type as it appears in each of the different ID3v2 documents</b>
|
39
|
+
</p>
|
31
40
|
|
32
41
|
|
33
42
|
<br>
|
@@ -2018,15 +2027,14 @@ The symbolic name CRYPTEDMETA is not part of id3lib-3.8.0, and LEADARTIST was sh
|
|
2018
2027
|
|
2019
2028
|
|
2020
2029
|
</p>
|
2021
|
-
<h3>
|
2030
|
+
<h3>Notes:</h3>
|
2022
2031
|
|
2023
2032
|
|
2024
2033
|
<ul>
|
2025
|
-
|
2026
|
-
|
2027
2034
|
<li>TXXX , WXXX: There may be multiple TXXX and WXXX frames in one tag, each one with different description fields..</li>
|
2028
|
-
<li>LINK: Link frames are hard to implement<br>
|
2029
|
-
|
2035
|
+
<li>LINK: Link frames are hard to implement<br></li>
|
2036
|
+
<li>Embedded Pictures: why, oh why did they embed pictures, rather than refering to an image file on the same level as the MP3 file,
|
2037
|
+
or an image-URL for streaming purposes..? It seems like an aweful waste of space, especially if an album contains many tracks.</li>
|
2030
2038
|
</ul>
|
2031
2039
|
|
2032
2040
|
|
@@ -2040,4 +2048,4 @@ The symbolic name CRYPTEDMETA is not part of id3lib-3.8.0, and LEADARTIST was sh
|
|
2040
2048
|
|
2041
2049
|
|
2042
2050
|
|
2043
|
-
</body></html>
|
2051
|
+
</body></html>
|
@@ -1,60 +1,197 @@
|
|
1
|
+
|
1
2
|
===========================
|
2
|
-
|
3
|
+
Comparison of ID3v2 Frames:
|
3
4
|
===========================
|
4
5
|
|
5
|
-
|
6
|
-
|
7
|
-
|
6
|
+
This document contains a side-by-side comparison over the frames used
|
7
|
+
in the 3 different versions of the informal ID3v2 standard:
|
8
|
+
v2.2.0, v2.3.0 and v2.4.0
|
8
9
|
|
9
10
|
This document is a compilation of information which is available in the
|
10
|
-
documents listed below
|
11
|
-
The original documents Copyright notices apply.
|
12
|
-
|
13
|
-
Content: Copyright (C) Martin Nilsson 1998, 2000
|
14
|
-
|
15
|
-
Please refer to the original documents listed below, for any information
|
16
|
-
regarding the ID3v2 standards.
|
11
|
+
documents listed below. The original documents Copyright notices apply.
|
17
12
|
|
13
|
+
ID3 v1.0 : http://www.id3.org/id3v1.html
|
14
|
+
ID3 v1.1 : http://www.egr.uri.edu/~kovacsp/mp3/ID3-Tag.html
|
18
15
|
|
19
16
|
|
20
|
-
Compiled by: Tilo Sloboda, Thu, 17 Oct 2002 00:26:54 -0700
|
21
|
-
|
22
|
-
|
23
|
-
Sources:
|
24
17
|
ID3v2 2.0: http://www.id3.org/id3v2-00.txt
|
25
18
|
ID3v2 3.0: http://www.id3.org/id3v2.3.0.txt
|
26
19
|
ID3v2 4.0: http://www.id3.org/id3v2.4.0-changes.txt
|
27
20
|
http://www.id3.org/id3v2.4.0-structure.txt
|
28
21
|
http://www.id3.org/id3v2.4.0-frames.txt
|
29
22
|
|
23
|
+
Please refer to the original documents listed above, for any information
|
24
|
+
regarding the ID3v2 standards.
|
30
25
|
|
31
|
-
================================================================================
|
32
|
-
ID3V22_HEADER: "ID3" $02 $00 $C0 $7F $7F $7F $7F
|
33
|
-
|
34
|
-
ID3V22_FRAME_HEADER: "XXX" $SS $SS $SS
|
35
26
|
|
36
|
-
|
27
|
+
Author: Tilo Sloboda, Thu, 17 Oct 2002 00:26:54 -0700
|
37
28
|
|
38
|
-
ID3V22_TEXT_FRAME2: <textstring> ($00 (00))
|
39
29
|
|
40
|
-
|
41
|
-
|
30
|
+
References:
|
31
|
+
id3lib-3.8.0 id3lib-3.8.0/include/id3/globals.h
|
32
|
+
|
33
|
+
NOTE: the symbolic names used in the leftmost column are derived
|
34
|
+
from the names used in id3lib-3.8.0
|
35
|
+
The symbolic name CRYPTEDMETA is not part of id3lib-3.8.0
|
36
|
+
|
37
|
+
Legend:
|
42
38
|
|
43
|
-
|
39
|
+
-- : depreciated frame
|
40
|
+
|
41
|
+
-> : replaced by (all frames listed before this one are replaced)
|
42
|
+
|
44
43
|
|
45
44
|
|
46
45
|
================================================================================
|
47
|
-
|
48
|
-
|
49
|
-
ID3V23_FRAME_HEADER: "XXXX" $SS $SS $SS $SS $FF $FF
|
50
|
-
|
51
|
-
|
46
|
+
ID3v2 version
|
47
|
+
symbolic names 2.0 3.0 4.0 comments
|
52
48
|
================================================================================
|
53
|
-
ID3V24_HEADER: "ID3" $04 $00 $F0 $7F $7F $7F $7F
|
54
|
-
|
55
|
-
ID3V24_FRAME_HEADER: "XXXX" $7F $7F $7F $7F $FF $FF
|
56
|
-
|
57
49
|
|
50
|
+
CONTENTGROUP TT1 TIT1 TIT1 content group description
|
51
|
+
TITLE TT2 TIT2 TIT2 title/songname/content description
|
52
|
+
SUBTITLE TT3 TIT3 TIT3 subtitle/description refinement
|
53
|
+
|
54
|
+
LEADARTIST TP1 TPE1 TPE1 lead performer(s)/soloist(s)
|
55
|
+
BAND TP2 TPE2 TPE2 band/orchestra/accompaniment
|
56
|
+
CONDUCTOR TP3 TPE3 TPE3 conductor/performer refinement
|
57
|
+
MIXARTIST TP4 TPE4 TPE4 interpreted, remixed, modified by
|
58
|
+
|
59
|
+
COMPOSER TCM TCOM TCOM composer
|
60
|
+
LYRICIST TXT` TEXT TEXT lyricist/text writer
|
61
|
+
|
62
|
+
LANGUAGE TLA TLAN TLAN language(s)
|
63
|
+
CONTENTTYPE TCO TCON TCON content type
|
64
|
+
|
65
|
+
ALBUM TAL TALB TALB album/movie/show title
|
66
|
+
|
67
|
+
TRACKNUM TRK TRCK TRCK track number/position in set
|
68
|
+
PARTINSET TPA TPOS TPOS part of set
|
69
|
+
|
70
|
+
ISRC TRC TSRC TSRC international standard recording code
|
71
|
+
|
72
|
+
--------------------------------------------------------------------------------
|
73
|
+
DATE TDA TDAT date
|
74
|
+
YEAR TYE TYER year
|
75
|
+
TIME TIM TIME time
|
76
|
+
RECORDINGDATES TRD TRDA recording dates
|
77
|
+
RECORDINGTIME -> TDRC recording time
|
78
|
+
--------------------------------------------------------------------------------
|
79
|
+
ORIGYEAR TOR TORY original release year
|
80
|
+
ORIGRELEASETIME -> TDOR original release time
|
81
|
+
--------------------------------------------------------------------------------
|
82
|
+
|
83
|
+
BPM TBP TBPM TBPM beats per minute
|
84
|
+
|
85
|
+
MEDIATYPE TMT TMED TMED media type
|
86
|
+
FILETYPE TFT TFLT TFLT file type
|
87
|
+
COPYRIGHT TCR TCOP TCOP copyright message
|
88
|
+
|
89
|
+
PUBLISHER TPB TPUB TPUB pblisher
|
90
|
+
ENCODEDBY TEN TENC TENC encoded by
|
91
|
+
ENCODERSETTINGS TSS TSSE TSSE software/hardware + settings for encoding
|
92
|
+
|
93
|
+
SONGLEN TLE TLEN TLEN length (ms)
|
94
|
+
--------------------------------------------------------------------------------
|
95
|
+
SIZE TSI TSIZ -- size (bytes)
|
96
|
+
--------------------------------------------------------------------------------
|
97
|
+
|
98
|
+
PLAYLISTDELAY TDY TDLY TDLY playlist delay
|
99
|
+
INITIALKEY TKE TKEY TKEY initial key
|
100
|
+
|
101
|
+
ORIGALBUM TOT TOAL TOAL original album/movie/show title
|
102
|
+
ORIGFILENAME TOF TOFN TOFN original filename
|
103
|
+
ORIGARTIST TOA TOPE TOPE original artist(s)/performer(s)
|
104
|
+
ORIGLYRICIST TOL TOLY TOLY original lyricist(s)/text writer(s)
|
105
|
+
|
106
|
+
FILEOWNER TOWN TOWN file owner/licensee
|
107
|
+
NETRADIOSTATION TRSN TRSN internet radio station name
|
108
|
+
NETRADIOOWNER TRSO TRSO internet radio station owner
|
109
|
+
|
110
|
+
SETSUBTITLE TSST set subtitle
|
111
|
+
MOOD TMOO mood
|
112
|
+
PRODUCEDNOTICE TPRO produced notice
|
113
|
+
ENCODINGTIME TDEN encoding time
|
114
|
+
RELEASETIME TDRL release time
|
115
|
+
TAGGINGTIME TDTG tagging time
|
116
|
+
|
117
|
+
ALBUMSORTORDER TSOA album sort order
|
118
|
+
PERFORMERSORTORDER TSOP performer sort order
|
119
|
+
TITLESORTORDER TSOT title sort order
|
120
|
+
|
121
|
+
USERTEXT TXX TXXX TXXX user defined text information frame
|
122
|
+
|
123
|
+
|
124
|
+
WWWAUDIOFILE WAF WOAF WOAF official audio file webpage
|
125
|
+
WWWARTIST WAR WOAR WOAR official artist/performer webpage
|
126
|
+
WWWAUDIOSOURCE WAS WOAS WOAS official audion source webpage
|
127
|
+
WWWCOMMERCIALINFO WCM WCOM WCOM commercial information
|
128
|
+
WWWCOPYRIGHT WCP WCOP WCOP copyright/legal information
|
129
|
+
WWWPUBLISHER WPB WPUB WPUB publishers official webpage
|
130
|
+
|
131
|
+
WWWRADIOPAGE WORS WORS official internet radio station homepage
|
132
|
+
WWWPAYMENT WPAY WPAY payment
|
133
|
+
|
134
|
+
WWWUSER WXX WXXX WXXX user defined URL link frame
|
135
|
+
|
136
|
+
--------------------------------------------------------------------------------
|
137
|
+
INVOLVEDPEOPLE IPL IPLS involved people list
|
138
|
+
MUSICIANCREDITLIST -> TMCL musician credits list
|
139
|
+
INVOLVEDPEOPLE2 -> TIPL involved people list
|
140
|
+
--------------------------------------------------------------------------------
|
141
|
+
|
142
|
+
UNSYNCEDLYRICS ULT USLT USLT unsynchronised lyrics/text transcription
|
143
|
+
COMMENT COM COMM COMM comments
|
144
|
+
|
145
|
+
TERMSOFUSE USER USER terms of use
|
146
|
+
|
147
|
+
|
148
|
+
================================================================================
|
149
|
+
ID3v2 version
|
150
|
+
symbolic names 2.0 3.0 4.0 comments
|
151
|
+
================================================================================
|
152
|
+
|
153
|
+
CDID MCI MCDI MCDI music CD identifier
|
154
|
+
EVENTTIMING ETC ETCO ETCO event timing codes
|
155
|
+
MPEGLOOKUP MLL MLLT MLLT MPEG location lookup table
|
156
|
+
|
157
|
+
SYNCEDTEMPO STC SYTC SYTC synchronised tempo codes
|
158
|
+
SYNCEDLYRICS SLT SYLT SYLT synchronised lyrics/text
|
159
|
+
|
160
|
+
--------------------------------------------------------------------------------
|
161
|
+
VOLUMEADJ RVA RVAD relative volume adjustment
|
162
|
+
VOLUMEADJ2 -> RVA2 relative volume adjustment (2)
|
163
|
+
--------------------------------------------------------------------------------
|
164
|
+
EQUALIZATION EQU EQUA equalization
|
165
|
+
EQUALIZATION2 -> EQU2 equalization (2)
|
166
|
+
--------------------------------------------------------------------------------
|
167
|
+
|
168
|
+
REVERB REV RVRB RVRB reverb
|
169
|
+
PICTURE PIC APIC APIC attached picture
|
170
|
+
GENERALOBJECT GEO GEOB GEOB general encapsulated object
|
171
|
+
|
172
|
+
PLAYCOUNTER CNT PCNT PCNT play counter
|
173
|
+
POPULARIMETER POP POPM POPM popularimeter
|
174
|
+
|
175
|
+
BUFFERSIZE BUF RBUF RBUF recommended buffer size
|
176
|
+
|
177
|
+
CRYPTEDMETA CRM encrypted meta frame
|
178
|
+
AUDIOCRYPTO CRA AENC AENC audio encryption
|
179
|
+
|
180
|
+
LINKEDINFO LNK LINK LINK linked information
|
181
|
+
|
182
|
+
POSITIONSYNC POSS POSS position synchronisation frame
|
183
|
+
|
184
|
+
COMMERCIAL COMR COMR commercial frame
|
185
|
+
CRYPTOREG ENCR ENCR encryption method registration
|
186
|
+
GROUPINGREG GRID GRID group indentification registration
|
187
|
+
PRIVATE PRIV PRIV private frame
|
188
|
+
|
189
|
+
OWNERSHIP OWNE ownership frame
|
190
|
+
SIGNATURE SIGN signature frame
|
191
|
+
SEEKFRAME SEEK seek frame
|
192
|
+
AUDIOSEEKPOINT ASPI audio seek point index
|
193
|
+
|
194
|
+
================================================================================
|
195
|
+
ID3v2 version
|
196
|
+
symbolic names 2.0 3.0 4.0 comments
|
58
197
|
================================================================================
|
59
|
-
|
60
|
-
|
data/{lib → docs}/hexdump.rb
RENAMED
File without changes
|
data/docs/index.html
CHANGED
@@ -16,7 +16,7 @@
|
|
16
16
|
<center>
|
17
17
|
<h1><font color="#ff0000">Pre-Beta Release</font><br>
|
18
18
|
</h1>
|
19
|
-
<h1>id3.rb - ID3 Library for Ruby<br><font size="-3">by Tilo Sloboda <
|
19
|
+
<h1>id3.rb - ID3 Library for Ruby<br><font size="-3">by Tilo Sloboda <myfirstname.mylastname @ google_email><br>
|
20
20
|
</font></h1>
|
21
21
|
|
22
22
|
</center>
|
@@ -24,6 +24,12 @@
|
|
24
24
|
|
25
25
|
|
26
26
|
|
27
|
+
<P>
|
28
|
+
<h2><font color="#ff0000">Now On GitHub!</font></h2>
|
29
|
+
Fork the source code on GitHub: <a href='https://github.com/tilo/ID3'>https://github.com/tilo/ID3</a>
|
30
|
+
<P>
|
31
|
+
<p>
|
32
|
+
|
27
33
|
|
28
34
|
<h3><font color="#ff0000">Feedback Needed</font></h3>
|
29
35
|
|
@@ -31,7 +37,7 @@
|
|
31
37
|
|
32
38
|
Currently I would like to get feedback on the interface, classes, methods provided by the ID3-library.
|
33
39
|
<p>
|
34
|
-
Please send me <a href="mailto:
|
40
|
+
Please send me <a href="mailto:myfirstname.mylastname @ google_email">email</a> and let me know what you think..<br>
|
35
41
|
</p>
|
36
42
|
|
37
43
|
<p><br>
|
@@ -119,11 +125,21 @@ without problems. <br>
|
|
119
125
|
|
120
126
|
<br>
|
121
127
|
<table border=1>
|
122
|
-
<tr><th>Version</th><th>gem</th><th>tar.gz</th><th>Changes</th></tr>
|
128
|
+
<tr><th>Version</th><th>gem</th><th>tar.gz</th><th>Release Branch</th><th>Release Tag</th><th>Changes</th></tr>
|
129
|
+
<tr>
|
130
|
+
<th>0.5.1</th>
|
131
|
+
<td><A HREF='http://unixgods.org/~tilo/Ruby/id3-0.5.1.gem'>id3-0.5.1.gem</A></td>
|
132
|
+
<td><A HREF='http://unixgods.org/~tilo/Ruby/id3-0.5.1.tar.gz'>id3-0.5.1.tar.gz</A></td>
|
133
|
+
<td><a href='https://github.com/tilo/ID3/branches/RB_0.5.1'>RB_0.5.1</a></td>
|
134
|
+
<td><a href='https://github.com/tilo/ID3/commits/0.5.1'>0.5.1</a></td>
|
135
|
+
<td>now compatible with Ruby >= 1.9.x</td>
|
136
|
+
</tr>
|
123
137
|
<tr>
|
124
138
|
<th>0.5.0</th>
|
125
|
-
<td><A HREF
|
126
|
-
<td><A HREF
|
139
|
+
<td><A HREF='http://unixgods.org/~tilo/Ruby/id3-0.5.0.gem'>id3-0.5.0.gem</A></td>
|
140
|
+
<td><A HREF='http://unixgods.org/~tilo/Ruby/id3-0.5.0.tar.gz'>id3-0.5.0.tar.gz</A></td>
|
141
|
+
<td><a href='https://github.com/tilo/ID3/branches/RB_0.5.0'>RB_0.5.0</a></td>
|
142
|
+
<td><a href='https://github.com/tilo/ID3/commits/0.5.0'>0.5.0</a></td>
|
127
143
|
<td>
|
128
144
|
<UL>
|
129
145
|
<LI>Added write support
|
@@ -135,14 +151,18 @@ without problems. <br>
|
|
135
151
|
</tr>
|
136
152
|
<tr>
|
137
153
|
<th>0.4.1</th>
|
138
|
-
<td><A HREF
|
139
|
-
<td><A HREF
|
154
|
+
<td><A HREF='http://unixgods.org/~tilo/Ruby/id3-0.4.1.gem'>id3-0.4.1.gem</A></td>
|
155
|
+
<td><A HREF='http://unixgods.org/~tilo/Ruby/id3-0.4.1.tar.gz'>id3-0.4.1.tar.gz</A></td>
|
156
|
+
<td><a href='https://github.com/tilo/ID3/branches/RB_0.4.1'>RB_0.4.1</a></td>
|
157
|
+
<td><a href='https://github.com/tilo/ID3/commits/0.4.1'>0.4.1</a></td>
|
140
158
|
<td>Included patch provided by Sergey Udaltsov for UTF-8 and UTF-16 encodings, and new parser routines</td>
|
141
159
|
</tr>
|
142
160
|
<tr>
|
143
161
|
<th>0.4.0</th>
|
144
|
-
<td><A HREF
|
145
|
-
<td><A HREF
|
162
|
+
<td><A HREF='http://unixgods.org/~tilo/Ruby/id3-0.4.0.gem'>id3-0.4.0.gem</A></td>
|
163
|
+
<td><A HREF='http://unixgods.org/~tilo/Ruby/id3-0.4.0.tar.gz'>id3-0.4.0.tar.gz</A></td>
|
164
|
+
<td><a href='https://github.com/tilo/ID3/branches/RB_0.4.0'>RB_0.4.0</a></td>
|
165
|
+
<td><a href='https://github.com/tilo/ID3/commits/0.4.0'>0.4.0</a></td>
|
146
166
|
<td>identical to previous 0.4 version, but now also available as a ruby gem</td>
|
147
167
|
</tr>
|
148
168
|
</table>
|