diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-03-10 23:07:36 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-03-10 23:07:36 +0700 |
commit | bd34c32bd754f30dd34b2d43604de73681b7148b (patch) | |
tree | 9a4f5bc5771bfbfc61fbacb57172b2c313c08baf /youtube_dl | |
parent | f802c4866017017afa642ca9ea1ea87edad081b4 (diff) |
[wdr] Actualize comment
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/wdr.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/extractor/wdr.py b/youtube_dl/extractor/wdr.py index 110999827..8bb7362bb 100644 --- a/youtube_dl/extractor/wdr.py +++ b/youtube_dl/extractor/wdr.py @@ -19,7 +19,8 @@ class WDRBaseIE(InfoExtractor): def _extract_wdr_video(self, webpage, display_id): # for wdr.de the data-extension is in a tag with the class "mediaLink" # for wdr.de radio players, in a tag with the class "wdrrPlayerPlayBtn" - # for wdrmaus it is in a link to the page in a multiline "videoLink"-tag + # for wdrmaus, in a tag with the class "videoButton" (previously a link + # to the page in a multiline "videoLink"-tag) json_metadata = self._html_search_regex( r'class=(?:"(?:mediaLink|wdrrPlayerPlayBtn|videoButton)\b[^"]*"[^>]+|"videoLink\b[^"]*"[\s]*>\n[^\n]*)data-extension="([^"]+)"', webpage, 'media link', default=None, flags=re.MULTILINE) @@ -32,7 +33,7 @@ class WDRBaseIE(InfoExtractor): jsonp_url = media_link_obj['mediaObj']['url'] metadata = self._download_json( - jsonp_url, 'metadata', transform_source=strip_jsonp) + jsonp_url, display_id, transform_source=strip_jsonp) metadata_tracker_data = metadata['trackerData'] metadata_media_resource = metadata['mediaResource'] |