aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/wdr.py
diff options
context:
space:
mode:
authorBoris Wachtmeister <boris-code@gmx.com>2016-05-26 19:08:12 +0200
committerBoris Wachtmeister <boris-code@gmx.com>2016-05-26 20:54:51 +0200
commit33a1ff7113d9dd656b3c56cb404de85646caa559 (patch)
treeb07a903ab8448b585b5cbcc168f8dffd374331d0 /youtube_dl/extractor/wdr.py
parentbec2c14f2cf4f06f1b99e04d59779d8d103d726a (diff)
downloadyoutube-dl-33a1ff7113d9dd656b3c56cb404de85646caa559.tar.xz
[WDR] extract jsonp-url by parsing data-extension of mediaLink
Diffstat (limited to 'youtube_dl/extractor/wdr.py')
-rw-r--r--youtube_dl/extractor/wdr.py17
1 files changed, 12 insertions, 5 deletions
diff --git a/youtube_dl/extractor/wdr.py b/youtube_dl/extractor/wdr.py
index fddcbf190..dd107ef8a 100644
--- a/youtube_dl/extractor/wdr.py
+++ b/youtube_dl/extractor/wdr.py
@@ -10,6 +10,7 @@ from ..compat import (
)
from ..utils import (
determine_ext,
+ js_to_json,
strip_jsonp,
unified_strdate,
ExtractorError,
@@ -21,8 +22,6 @@ class WDRIE(InfoExtractor):
_PAGE_REGEX = r'/mediathek/(?P<media_type>[^/]+)/(?P<type>[^/]+)/(?P<display_id>.+)\.html'
_VALID_URL = r'(?P<page_url>https?://(?:www\d\.)?wdr\d?\.de)' + _PAGE_REGEX + '|' + _CURRENT_MAUS_URL
- _JS_URL_REGEX = r'(https?://deviceids-medp.wdr.de/ondemand/\d+/\d+\.js)'
-
_TESTS = [
{
'url': 'http://www1.wdr.de/mediathek/video/sendungen/doku-am-freitag/video-geheimnis-aachener-dom-100.html',
@@ -102,9 +101,13 @@ class WDRIE(InfoExtractor):
display_id = mobj.group('display_id')
webpage = self._download_webpage(url, display_id)
- js_url = self._search_regex(self._JS_URL_REGEX, webpage, 'js_url', default=None)
+ # for wdr.de the data-extension is in a tag with the class "mediaLink"
+ # for wdrmaus its in a link to the page in a multiline "videoLink"-tag
+ json_metadata = self._html_search_regex(
+ r'class=(?:"mediaLink\b[^"]*"[^>]+|"videoLink\b[^"]*"[\s]*>\n[^\n]*)data-extension="([^"]+)"',
+ webpage, 'media link', default=None, flags=re.MULTILINE)
- if not js_url:
+ if not json_metadata:
entries = [
self.url_result(page_url + href[0], 'WDR')
for href in re.findall(
@@ -117,8 +120,12 @@ class WDRIE(InfoExtractor):
raise ExtractorError('No downloadable streams found', expected=True)
+ media_link_obj = self._parse_json(json_metadata, display_id,
+ transform_source=js_to_json)
+ jsonp_url = media_link_obj['mediaObj']['url']
+
metadata = self._download_json(
- js_url, 'metadata', transform_source=strip_jsonp)
+ jsonp_url, 'metadata', transform_source=strip_jsonp)
metadata_tracker_data = metadata['trackerData']
metadata_media_resource = metadata['mediaResource']