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
|
# -*- coding: utf-8 -*-
# Copyright 2016-2025 Mike Fährmann
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 as
# published by the Free Software Foundation.
"""Extractors for https://downloads.khinsider.com/"""
from .common import Extractor, Message, AsynchronousMixin
from .. import text, exception
class KhinsiderSoundtrackExtractor(AsynchronousMixin, Extractor):
"""Extractor for soundtracks from khinsider.com"""
category = "khinsider"
subcategory = "soundtrack"
root = "https://downloads.khinsider.com"
directory_fmt = ("{category}", "{album[name]}")
archive_fmt = "{filename}.{extension}"
pattern = (r"(?:https?://)?downloads\.khinsider\.com"
r"/game-soundtracks/album/([^/?#]+)")
example = ("https://downloads.khinsider.com"
"/game-soundtracks/album/TITLE")
def __init__(self, match):
Extractor.__init__(self, match)
self.album = match[1]
def items(self):
url = self.root + "/game-soundtracks/album/" + self.album
page = self.request(url, encoding="utf-8").text
if "Download all songs at once:" not in page:
raise exception.NotFoundError("soundtrack")
data = self.metadata(page)
yield Message.Directory, data
if self.config("covers", False):
for num, url in enumerate(self._extract_covers(page), 1):
cover = text.nameext_from_url(
url, {"url": url, "num": num, "type": "cover"})
cover.update(data)
yield Message.Url, url, cover
for track in self._extract_tracks(page):
track.update(data)
track["type"] = "track"
yield Message.Url, track["url"], track
def metadata(self, page):
extr = text.extract_from(page)
return {"album": {
"name" : text.unescape(extr("<h2>", "<")),
"platform": text.split_html(extr("Platforms: ", "<br>"))[::2],
"year": extr("Year: <b>", "<"),
"catalog": extr("Catalog Number: <b>", "<"),
"developer": text.remove_html(extr(" Developed by: ", "</")),
"publisher": text.remove_html(extr(" Published by: ", "</")),
"count": text.parse_int(extr("Number of Files: <b>", "<")),
"size" : text.parse_bytes(extr("Total Filesize: <b>", "<")[:-1]),
"date" : extr("Date Added: <b>", "<"),
"type" : text.remove_html(extr("Album type: <b>", "</b>")),
"uploader": text.remove_html(extr("Uploaded by: ", "</")),
}}
def _extract_tracks(self, page):
fmt = self.config("format", ("mp3",))
if fmt and isinstance(fmt, str):
if fmt == "all":
fmt = None
else:
fmt = fmt.lower().split(",")
page = text.extr(page, '<table id="songlist">', '</table>')
for num, url in enumerate(text.extract_iter(
page, '<td class="clickable-row"><a href="', '"'), 1):
url = text.urljoin(self.root, url)
page = self.request(url, encoding="utf-8").text
track = first = None
for url in text.extract_iter(page, '<p><a href="', '"'):
track = text.nameext_from_url(url, {"num": num, "url": url})
if first is None:
first = track
if not fmt or track["extension"] in fmt:
first = False
yield track
if first:
yield first
def _extract_covers(self, page):
return [
text.unescape(text.extr(cover, ' href="', '"'))
for cover in text.extract_iter(page, ' class="albumImage', '</')
]
|