-
Notifications
You must be signed in to change notification settings - Fork 17
/
Audible.com.au#Search by Album.src
400 lines (360 loc) · 7.73 KB
/
Audible.com.au#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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
# ###################################################################
#
# Mp3tag parsing for Audible.de, created by dano on 2013-03-11
#
# 2013-09-20: Updated
# 2020-03-24: Updated
# 2020-04-06: Updated to Audible.com
# 2020-06-28: Updated to region independent (u/Carlyone)
# 2020-08-05: Updated
# 2021-12-07: Updated to Audible.com.au
# 2023-08-11: Updated (u/d-e-x-x)
#
# This file should be in your sources dir. %appdata%\roaming\mp3tag\data\sources
# On Windows XP it's C:\Documents and Settings\*username*\Application Data\Mp3tag\data\sources
#
#
[Name]=Audible.com.au
[BasedOn]=www.audible.com.au
[IndexUrl]=https://www.audible.com.au/search?ipRedirectOverride=true&overrideBaseCountry=true&keywords=
[AlbumUrl]=https://www.audible.com.au
[WordSeperator]=+
[IndexFormat]=%_url%|%Album%|%Author%|%Duration%|%Year%|%Language%
[SearchBy]=%artist% $regexp(%album%,'[- ]+cd ?\d+$',,1)
[Encoding]=url-utf-8
[ParserScriptIndex]=...
# ###################################################################
# I N D E X
# ###################################################################
#DebugWriteInput "C:\Users\%user%\Desktop\mp3tag.html"
#Debug "ON" "C:\Users\%user%\Desktop\mp3tagdebug.txt"
#Only select the area we need instead of everyting.
findline "<ul class=\"bc-list"
joinuntil "center-4"
regexpreplace "\s\s+" " "
regexpreplace "\t+" " "
replace "\" >" "\">"
replace "> <" "><"
replace "Running Time:" ""
findinline "bc-spacing-micro"
findinline "<h3 class=\"bc-heading"
do
# Url
findinline "href=\""
sayuntil "?"
say "?ipRedirectOverride=true&overrideBaseCountry"
say "|"
# Album
findinline ">"
sayuntil "<"
findinline "</li>"
if "<li class=\"bc-list-item subtitle"
say " - "
findinline "bc-color-secondary\">"
sayuntil "<"
else
if "<li class=\"bc-list-item bc"
say " - "
findinline ">"
sayuntil "<"
endif
endif
say "|"
#Author
findinline "authorLabel\">"
findinline "href="
findinline ">"
sayuntil "<"
say "|"
# Duration
findinline "runtimeLabel\">"
findinline "bc-color-secondary\">"
sayuntil "<"
say "|"
# Year
findinline "Release date:" 1 1
sayuntil "<"
say "|"
# Language
findinline "languageLabel\""
findinline "Language:"
sayuntil "<"
saynewline
findinline "<h3 class=\"bc-heading " 1 1
while "bc-color-link" 99
[ParserScriptAlbum]=...
# ###################################################################
# A L B U M
# ###################################################################
# Cover
outputto "Coverurl"
findline "\"image\": \""
replace "_SL175_" "_SS500_"
replace "_SL300_" "_SS500_"
findinline "\"image\": \""
sayuntil "\""
gotoline 1
# Asin
findline "<input type=\"hidden\" id=\"reviewsAsinUS\" value=\""
findinline "<input type=\"hidden\" id=\"reviewsAsinUS\" value=\""
outputto "ASIN"
sayuntil "\""
gotoline 1
# Set Album and correct Audible quirks
findline "<h1 class=\"bc-heading"
joinuntil "authorLabel"
findinline ">"
findinline ":" 1 1
movechar -1
if ":"
findline "<h1 class=\"bc-heading"
joinuntil "authorLabel"
findinline ">"
outputto "Album"
regexpreplace "</?[^><]+>" ""
unspace
regexpreplace " +" " "
sayuntil ":"
outputto "subtitle"
movechar 2
sayuntil "<"
else
findline "<h1 class=\"bc-heading"
joinuntil "authorLabel"
findinline ">" 1 1
outputto "Album"
sayuntil "<"
endif
# Subtitle of Album
regexpreplace " +" " "
replace "<span class=\"bc-text bc-size-medium\" ></span>" ""
findinline "bc-text bc-size-medium\" " 1 1
if ">"
movechar 1
outputto "Subtitle"
sayuntil "<"
else
gotoline 1
endif
# Author
outputto "Albumartist"
findline "authorLabel"
moveline 3 1
joinuntil "</li>"
regexpreplace "</?[^><]+>" ""
unspace
regexpreplace " +" " "
regexpreplace ".+By:" ""
sayrest
# narratorLabel
outputto "Composer"
findline "narratorLabel"
moveline 3 1
joinuntil "</li>"
regexpreplace "</?[^><]+>" ""
unspace
regexpreplace " +" " "
regexpreplace ".+Narrated by:" ""
sayrest
# Grouping / Series
findline "seriesLabel" 1 1
unspace
if "seriesLabel"
outputto "SHOWMOVEMENT"
say "1"
outputto "SERIES"
findline "href="
findinline ">"
sayuntil "<"
outputto "series-part"
findinline "a>, Book " 1 1
SayRegexp "^[.?\d]+(?=,|$)"
outputto "Albumsort"
sayoutput "series"
say " "
sayoutput "series-part"
say " - "
sayoutput "album"
outputto "CONTENTGROUP"
sayoutput "series"
say ", Book #"
sayoutput "series-part"
IfnotOutput "Subtitle"
outputto "subtitle"
sayoutput "CONTENTGROUP"
else
endif
else
IfnotOutput "Subtitle"
outputto "Albumsort"
sayoutput "album"
else
outputto "Albumsort"
sayoutput "album"
say ": "
sayoutput "Subtitle"
endif
gotoline 1
endif
# 1st Genre
findline "categoriesLabel" 1 1
unspace
if "categoriesLabel"
outputto "tmp_Genre1"
findinline "categoriesLabel" 1 1
joinuntil "</li>"
findinline "href="
findinline ">"
sayuntil "<"
# 2nd Genre
findinline "href=" 1 1
movechar -1
if "="
findinline ">"
outputto "tmp_Genre2"
sayuntil "<"
outputto "genre"
sayoutput "tmp_Genre1"
say "/"
sayoutput "tmp_Genre2"
else
outputto "genre"
sayoutput "tmp_Genre1"
endif
else
gotoline 1
endif
# Rating
gotoline 1
findline "ratingsLabel" 1 1
unspace
if "ratingsLabel"
findinline "ratingsLabel"
joinuntil "</li>"
unspace
findinline "<span class=\"bc-text\" " 1 1
movechar -22
if "<span class=\"bc-text\" "
findinline ">"
outputto "RATING WMP"
sayuntil "<"
else
outputto "RATING WMP"
say "0.1"
endif
else
outputto "RATING WMP"
say "0.2"
endif
# Description
gotoline 1
findline "bc-text-bold\" >Publisher's Summary</h2>" 1 1
unspace
if "bc-text-bold\" >Publisher's Summary</h2>"
outputto "Comment"
findline "<span class"
joinuntil "</span>"
regexpreplace "</?[^><]+>" ""
unspace
regexpreplace " +" " "
replace "bc-color-secondary\" >" ""
sayrest
else
gotoline 1
findline ", \"description\": \"" 1 1
unspace
if ", \"description\": \""
outputto "Comment"
findinline ", \"description\": \""
unspace
joinuntil ", \"image"
unspace
regexpreplace "</?[^><]+>" ""
unspace
regexpreplace " +" " "
replace ", \"description\": \"" ""
sayuntil ", \"image"
findline ", \"publisher\": \""
unspace
findinline ": \""
outputto "Publisher"
sayuntil "\""
findline ", \"datePublished\": \""
unspace
findinline ": \""
outputto "Year"
SayNChars 4
outputto "RELEASETIME"
sayoutput "Year"
else
endif
endif
# Inbedded Description (if no Publisher's Summary exists)
# Set Artist = artist, narrator
outputto "artist"
sayoutput "Albumartist"
say ", "
sayoutput "Composer"
#%artist%=regexp(%artist%,(\b\w+\b)(?=[\s\S]*\b\1\b).+, )
# Set Audible Album URL
outputto "WWWAUDIOFILE"
sayoutput "CurrentUrl"
# Set Comment to DESCRIPTION for better MP4 support
outputto "DESCRIPTION"
sayoutput "Comment"
# Set iTunes Media Type to Audiobook
outputto "ITUNESMEDIATYPE"
say "Audiobook"
# Set iTunes Gapless Playback
outputto "ITUNESGAPLESS"
say "1"
# Experimental Tag Shoehorn
# Set Series as Movement
outputto "MOVEMENTNAME"
sayoutput "Series"
# Set Series # as Movement #
outputto "MOVEMENT"
sayoutput "series-part"
# © Year, ©, Release Year, Publisher, the closest we can get to Original Pub year, Audible is not consistent with dates
findline "</div>"
unspace
joinuntil "</span>"
findinline "(P)" 1 1
movechar -17
if "Public Domain"
outputto "Copyright"
say "Public Domain"
outputto "year"
findinline "(P)"
SayNChars 4
outputto "RELEASETIME"
sayoutput "year"
outputto "Publisher"
movechar 1
sayuntil "<"
else
findline "</div>" 1 1
unspace
findinline "©" 1 1
movechar -1
If "©"
IfNot " Copyright"
movechar 1
outputto "Year"
SayNChars 4
findline "</div>"
replace "(P)" "; "
findinline "©"
outputto "Copyright"
sayuntil ";"
movechar 2
outputto "RELEASETIME"
SayNChars 4
outputto "Publisher"
movechar 1
sayuntil "<"
else
endif
else
endif
endif