diff options
author | Alexander Simon <an.alexsimon@googlemail.com> | 2022-01-04 09:13:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-04 13:43:20 +0530 |
commit | db47787024bd708a544f6d05a4d5eabb1bc34f60 (patch) | |
tree | 96c923f75cedcc44831d4987c865204a53a219f8 /yt_dlp/extractor/hrfensehen.py | |
parent | fdeab99eaba64317f4c72ba6384da98f1c4f2687 (diff) | |
download | hypervideo-pre-db47787024bd708a544f6d05a4d5eabb1bc34f60.tar.lz hypervideo-pre-db47787024bd708a544f6d05a4d5eabb1bc34f60.tar.xz hypervideo-pre-db47787024bd708a544f6d05a4d5eabb1bc34f60.zip |
[hrfernsehen] Fix ardloader extraction (#2217)
Authored by: CreaValix
Diffstat (limited to 'yt_dlp/extractor/hrfensehen.py')
-rw-r--r-- | yt_dlp/extractor/hrfensehen.py | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/yt_dlp/extractor/hrfensehen.py b/yt_dlp/extractor/hrfensehen.py index 2a994d471..e39ded254 100644 --- a/yt_dlp/extractor/hrfensehen.py +++ b/yt_dlp/extractor/hrfensehen.py @@ -26,13 +26,7 @@ class HRFernsehenIE(InfoExtractor): }]}, 'timestamp': 1598470200, 'upload_date': '20200826', - 'thumbnails': [{ - 'url': 'https://www.hessenschau.de/tv-sendung/hs_ganz-1554~_t-1598465545029_v-16to9.jpg', - 'id': '0' - }, { - 'url': 'https://www.hessenschau.de/tv-sendung/hs_ganz-1554~_t-1598465545029_v-16to9__medium.jpg', - 'id': '1' - }], + 'thumbnail': 'https://www.hessenschau.de/tv-sendung/hs_ganz-1554~_t-1598465545029_v-16to9__medium.jpg', 'title': 'hessenschau vom 26.08.2020' } }, { @@ -81,7 +75,7 @@ class HRFernsehenIE(InfoExtractor): description = self._html_search_meta( ['description'], webpage) - loader_str = unescapeHTML(self._search_regex(r"data-hr-mediaplayer-loader='([^']*)'", webpage, "ardloader")) + loader_str = unescapeHTML(self._search_regex(r"data-new-hr-mediaplayer-loader='([^']*)'", webpage, "ardloader")) loader_data = json.loads(loader_str) info = { |