summary refs log tree commit diff
diff options
context:
space:
mode:
authorpulpe <Pulpan3@gmail.com>2014-05-24 16:01:37 +0200
committerpulpe <Pulpan3@gmail.com>2014-05-24 16:01:37 +0200
commit865dbd4a26b68c982c53b55a9430463bb7f24b77 (patch)
tree86b172bbb1d426503c4721e1c0e42d2c20ebe278
parentb1e6f5591288ffde05208ce3e76e8aea1f48f032 (diff)
downloadyoutube-dl-865dbd4a26b68c982c53b55a9430463bb7f24b77.tar.gz
youtube-dl-865dbd4a26b68c982c53b55a9430463bb7f24b77.tar.xz
youtube-dl-865dbd4a26b68c982c53b55a9430463bb7f24b77.zip
[StreamCZ] correct video id + add test
-rw-r--r--youtube_dl/extractor/streamcz.py17
1 files changed, 14 insertions, 3 deletions
diff --git a/youtube_dl/extractor/streamcz.py b/youtube_dl/extractor/streamcz.py
index 7362904db..1b53ee74d 100644
--- a/youtube_dl/extractor/streamcz.py
+++ b/youtube_dl/extractor/streamcz.py
@@ -11,7 +11,7 @@ from ..utils import int_or_none
 class StreamCZIE(InfoExtractor):
     _VALID_URL = r'https?://(?:www\.)?stream\.cz/.+/(?P<videoid>.+)'
 
-    _TEST = {
+    _TESTS = [{
         'url': 'http://www.stream.cz/peklonataliri/765767-ecka-pro-deti',
         'md5': '6d3ca61a8d0633c9c542b92fcb936b0c',
         'info_dict': {
@@ -22,7 +22,18 @@ class StreamCZIE(InfoExtractor):
             'thumbnail': 'http://im.stream.cz/episode/52961d7e19d423f8f06f0100',
             'duration': 256,
         },
-    }
+    }, {
+        'url': 'https://www.stream.cz/blanik/10002447-tri-roky-pro-mazanka',
+        'md5': '246272e753e26bbace7fcd9deca0650c',
+        'info_dict': {
+            'id': '10002447',
+            'ext': 'mp4',
+            'title': 'Kancelář Blaník: Tři roky pro Mazánka',
+            'description': 'md5:9177695a8b756a0a8ab160de4043b392',
+            'thumbnail': 'http://im.stream.cz/episode/537f838c50c11f8d21320000',
+            'duration': 368,
+        },
+    }]
 
     def _real_extract(self, url):
         mobj = re.match(self._VALID_URL, url)
@@ -57,7 +68,7 @@ class StreamCZIE(InfoExtractor):
         self._sort_formats(formats)
 
         return {
-            'id': str(jsonData['id']),
+            'id': str(jsonData['episode_id']),
             'title': self._og_search_title(webpage),
             'thumbnail': jsonData['episode_image_original_url'].replace('//', 'http://'),
             'formats': formats,