about summary refs log tree commit diff
path: root/youtube_dl/extractor/mdr.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-04-16 21:57:28 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-04-16 21:57:28 +0800
commit5e5c30c3fd6d85d36bf169fddbfd58760420b5e3 (patch)
treedfad4719e7e392747d300b29dd094a1a67ef0d61 /youtube_dl/extractor/mdr.py
parent9154c87fc4583b7bad2ee851b08f17c57df755cc (diff)
downloadyoutube-dl-5e5c30c3fd6d85d36bf169fddbfd58760420b5e3.tar.gz
youtube-dl-5e5c30c3fd6d85d36bf169fddbfd58760420b5e3.tar.xz
youtube-dl-5e5c30c3fd6d85d36bf169fddbfd58760420b5e3.zip
[mdr] Fix extraction and update tests
It's strange that the date is changed. Anyway, new data matches what the
webpage says.
Diffstat (limited to 'youtube_dl/extractor/mdr.py')
-rw-r--r--youtube_dl/extractor/mdr.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/youtube_dl/extractor/mdr.py b/youtube_dl/extractor/mdr.py
index 2338e7f96..2100583df 100644
--- a/youtube_dl/extractor/mdr.py
+++ b/youtube_dl/extractor/mdr.py
@@ -49,8 +49,8 @@ class MDRIE(InfoExtractor):
             'ext': 'mp4',
             'title': 'Beutolomäus und der geheime Weihnachtswunsch',
             'description': 'md5:b69d32d7b2c55cbe86945ab309d39bbd',
-            'timestamp': 1419047100,
-            'upload_date': '20141220',
+            'timestamp': 1450950000,
+            'upload_date': '20151224',
             'duration': 4628,
             'uploader': 'KIKA',
         },
@@ -71,8 +71,8 @@ class MDRIE(InfoExtractor):
         webpage = self._download_webpage(url, video_id)
 
         data_url = self._search_regex(
-            r'(?:dataURL|playerXml(?:["\'])?)\s*:\s*(["\'])(?P<url>\\?/.+/(?:video|audio)-?[0-9]+-avCustom\.xml)\1',
-            webpage, 'data url', default=None, group='url').replace('\/', '/')
+            r'(?:dataURL|playerXml(?:["\'])?)\s*:\s*(["\'])(?P<url>.+/(?:video|audio)-?[0-9]+-avCustom\.xml)\1',
+            webpage, 'data url', group='url').replace('\/', '/')
 
         doc = self._download_xml(
             compat_urlparse.urljoin(url, data_url), video_id)