[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):