forked from antonio-gil/Mp3Tag_WS_MetalArchives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Me&tal Archives#Search by Album.src
242 lines (197 loc) · 5.33 KB
/
Me&tal Archives#Search by Album.src
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
# ###################################################################
#
# _____ __ .__ _____ .__ .__
# / \ _____/ |______ | | / _ \_______ ____ | |__ |__|__ __ ____ ______
# / \ / \_/ __ \ __\__ \ | | / /_\ \_ __ \_/ ___\| | \| \ \/ // __ \ / ___/
# / Y \ ___/| | / __ \| |__ / | \ | \/\ \___| Y \ |\ /\ ___/ \___ \
# \____|__ /\___ >__| (____ /____/ \____|__ /__| \___ >___| /__| \_/ \___ >____ >
# \/ \/ \/ \/ \/ \/ \/ \/
#
#
#
# Mp3tag parsing for Metal-Archives.com, created by dano on 2007-12-15
#
# This file should be in your sources dir.
# On Windows XP it's C:\Documents and Settings\*username*\Application Data\Mp3tag\data\sources
#
# This config is used to gain informations about an ALBUM.
#
# 2009-07-07: Update
# 2011-04-29: Update
#
# Only search for Metal music, normal music is not on the site
# Also only real Metal. KoRn, Linkin Park or similar is not on the site
#
[Name]=The Metal Archives
[BasedOn]=www.metal-archives.com
[IndexUrl]=http://www.metal-archives.com/search/ajax-album-search/?field=title&query=%s&sEcho=1&iColumns=4&sColumns=&iDisplayStart=0&iDisplayLength=100&sNames=%2C%2C%2C
[AlbumUrl]=
[WordSeperator]=+
[IndexFormat]=%Artist%|%_url%|%Album%|%Type%|%Year%
[SearchBy]=%album%
[Encoding]=utf-8
[ParserScriptIndex]=...
# ###################################################################
# I N D E X
# ###################################################################
# debug "on" "D:\Projects\mp3tag_temp\debug_MA-Google-Album-EXT_A.htm" "10"
# debugwriteinput "D:\Projects\mp3tag_temp\Metal-Archives Album A.htm"
findline "<a href=\\\""
do
# Artist
findinline "\\\">"
sayuntil "<"
say "|"
# Url
moveline 1
findinline "<a href=\\\""
sayuntil "\\\""
say "|"
# Album
findinline "\\\">"
sayuntil "<"
say "|"
# Type
moveline 1
replace "\"" ""
replace "," ""
sayrest
say "|"
# Year
moveline 1
replace "\"" ""
sayuntil "<"
saynewline
findline "<a href=\\\"" 1 1
unspace
while "\"<a href" 500
[ParserScriptAlbum]=...
# ###################################################################
# A L B U M
# ###################################################################
# debug "on" "D:\Projects\mp3tag_temp\debug_MA-Album_EXT-B.htm" "10"
findline "id=\"album_sidebar\">"
# Band URL
outputto "METAL ARCHIVES BAND URL"
findline "<a href=\""
replace "#band_tab_discography" ""
findinline "<a href=\""
sayuntil "\""
# Coverurl
outputto "coverurl"
findline "class=\"album_img\""
joinuntil "</div>"
findinline " href=\"" 1 1
sayuntil "\""
# Album
outputto "Album"
findline "<div id=\"album_info\">"
findline "<h1 class=\"album_name\">"
regexpreplace "<a[^>]+>" ""
findinline "<h1 class=\"album_name\">"
sayuntil "</"
# Artist
outputto "Artist"
findline "<h2 class=\"band_name\">"
moveline 1 1
regexpreplace "<a[^>]+>" ""
sayuntil "</"
# Type
outputto "Metal Archives Type"
findline "<dt>Type:</dt>"
moveline 1 1
regexpreplace "<[^>]+>" "" #kt
sayrest
# Year
outputto "Year"
findline "<dt>Release date:</dt>"
moveline 1 1
regexpreplace "<[^>]+>" "" #kt
sayregexp "\d\d\d\d"
# Date
outputto "Metal Archives Date"
replace "January " "-01-"
replace "February " "-02-"
replace "March " "-03-"
replace "April " "-04-"
replace "May " "-05-"
replace "June " "-06-"
replace "July " "-07-"
replace "August " "-08-"
replace "September " "-09-"
replace "October " "-10-"
replace "November " "-11-"
replace "December " "-12-"
regexpreplace "(\d+)[a-z,]+\s*" "$1-"
regexpreplace "-(\d)-" "-0$1-"
regexpreplace "-(\d\d)-(\d\d)-(\d\d\d\d)" "$3-$1-$2"
sayregexp "\d\d\d\d-\d\d-\d\d"
# Catalog ID
outputto "Catalog"
findline "<dt>Catalog ID:</dt>"
moveline 1 1
regexpreplace "<[^>]+>" "" #kt
sayrest
# Publisher
outputto "Publisher"
findline "<dt>Label:</dt>"
moveline 1 1
regexpreplace "<[^>]+>" "" #kt
sayrest
# Album Rating
outputto "Metal Archives Rating"
findline "<dt>Reviews:</dt>"
moveline 1 1
joinuntil "</dd>"
regexpreplace "<[^>]+>" "" #kt
regexpreplace "\d+ reviews? (\(avg\.)? *" ""
replace ")" ""
sayrest
# Tracks
findline "class=\"display table_lyrics\""
findline "<td width=\"20\">"
do
outputto "Tracks"
findline "<td" 2
joinuntil "</td>"
findinline "<td"
findinline ">"
sayuntil "</td>"
say "|"
# Length
outputto "_length"
findline "align=\"right\">"
sayregexp "\d+:\d+"
say "|"
findline "<td width=\"20\">" 1 1
unspace
while "<td width=\"20\">" 666
gotoline 1
# METAL ARCHIVE INFO
findline "<div id=\"album_tabs_notes\"" 1 1
unspace
if "<div id="
outputto "METAL ARCHIVES INFO"
findline "class=\"ui-tabs-panel-content"
moveline 1 1
joinuntil "</div>"
replace "<i>" ""
replace "</i>" ""
replace "</td>" ""
replace "</a>" ""
replace "<b>" ""
replace "</b>" ""
regexpreplace "[^\S\r\n]{2,}" ""
regexpreplace "<p[^>]*>" ""
regexpreplace "</p>" "\r\n"
regexpreplace "<a href[^>]*>" ""
regexpreplace ">\r" ">"
regexpreplace "\r<" "<"
regexpreplace "(?i)<br>|<br />" "\r\n"
sayuntil "</div>"
endif
outputto "METAL ARCHIVES ALBUM URL"
sayoutput "CurrentUrl"
# ... Customization ...
# Fields that you want to remove
# (to remove a field write: set "field")