[khinsider] extract 'description' metadata

This commit is contained in:
Mike Fährmann
2025-08-29 16:54:12 +02:00
parent 4a5aee6e1f
commit afffdbde1d
2 changed files with 3 additions and 0 deletions

View File

@@ -63,6 +63,7 @@ class KhinsiderSoundtrackExtractor(AsynchronousMixin, Extractor):
"date" : extr("Date Added: <b>", "<"),
"type" : text.remove_html(extr("Album type: <b>", "</b>")),
"uploader": text.remove_html(extr("Uploaded by: ", "</")),
"description": extr("<h2>Description</h2>", "<h2>").strip(),
}}
def _extract_tracks(self, page):

View File

@@ -41,6 +41,7 @@ __tests__ = (
"catalog" : "N/A",
"count" : 18,
"date" : "Dec 23rd, 2024",
"description": r"re:<p>Composer:.+",
"developer": "",
"name" : "Last Kingdom (Goddess of Victory: NIKKE Original Soundtrack)",
"platform" : ["Android", "iOS", "Windows"],
@@ -81,6 +82,7 @@ __tests__ = (
"catalog" : "PCCG-00357",
"count" : 36,
"date" : "Jul 1st, 2024",
"description": r"re:<p>Composer: Koji Kondo",
"developer": "",
"name" : "Super Mario 64 Original Soundtrack",
"platform" : ["N64"],