1
0
mirror of https://github.com/l1ving/youtube-dl synced 2025-02-03 16:42:52 +08:00

Updated fix for Heise extractor

This commit is contained in:
Hier631 2017-12-19 19:45:30 +01:00 committed by GitHub
parent 6f07731841
commit 1b07a645e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -56,11 +56,9 @@ class HeiseIE(InfoExtractor):
}]
def _real_extract(self, url):
url = re.sub(r'^https?://(?:www\.)?heise\.de/',
'https://m.heise.de/',
url)
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
mobile_url = re.sub(r'^https?://(?:www\.)?heise\.de/', 'https://m.heise.de/', url)
video_id = self._match_id(mobile_url)
webpage = self._download_webpage(mobile_url, video_id)
title = self._html_search_meta('fulltitle', webpage, default=None)
if not title or title == "c't":