about summary refs log tree commit diff
path: root/youtube_dl/extractor/sportbox.py
diff options
context:
space:
mode:
authorVitaliy Syrchikov <maddoger@gmail.com>2015-05-15 17:53:05 +0400
committerVitaliy Syrchikov <maddoger@gmail.com>2015-05-15 17:53:05 +0400
commitae670a6ed8019f1b69bbe345621f51c8b32789ec (patch)
tree2d7b34999eea24eeeb01b893fd975e26d9c383c6 /youtube_dl/extractor/sportbox.py
parenta7b8467ac0baecd02a815b1f57731ae9bb10ab87 (diff)
downloadyoutube-dl-ae670a6ed8019f1b69bbe345621f51c8b32789ec.tar.gz
youtube-dl-ae670a6ed8019f1b69bbe345621f51c8b32789ec.tar.xz
youtube-dl-ae670a6ed8019f1b69bbe345621f51c8b32789ec.zip
Sportbox source fix. HD videos support.
Diffstat (limited to 'youtube_dl/extractor/sportbox.py')
-rw-r--r--youtube_dl/extractor/sportbox.py12
1 files changed, 8 insertions, 4 deletions
diff --git a/youtube_dl/extractor/sportbox.py b/youtube_dl/extractor/sportbox.py
index 830220543..695b3ff82 100644
--- a/youtube_dl/extractor/sportbox.py
+++ b/youtube_dl/extractor/sportbox.py
@@ -14,7 +14,7 @@ class SportBoxIE(InfoExtractor):
     _VALID_URL = r'https?://news\.sportbox\.ru/(?:[^/]+/)+spbvideo_NI\d+_(?P<display_id>.+)'
     _TESTS = [
         {
-            'url': 'http://news.sportbox.ru/Vidy_sporta/Avtosport/Rossijskij/spbvideo_NI483529_Gonka-2-zaezd-Obyedinenniy-2000-klassi-Turing-i-S',
+            'url': 'http://news.sportbox.ru/Vidy_sporta/Avtosport/Rossijskij/spbvideo_NI483529_Gonka-2-zaezd-Obyedinenniy-2000-klassi-Turing-i-S',            
             'md5': 'ff56a598c2cf411a9a38a69709e97079',
             'info_dict': {
                 'id': '80822',
@@ -42,11 +42,15 @@ class SportBoxIE(InfoExtractor):
 
         webpage = self._download_webpage(url, display_id)
 
-        video_id = self._search_regex(
-            r'src="/vdl/player/media/(\d+)"', webpage, 'video id')
+        sobj = re.search(r'src="/vdl/player/(?P<media_type>\w+)/(?P<video_id>\d+)"', webpage)
+        if (sobj):
+            video_id = sobj.group('video_id')
+            media_type = sobj.group('media_type')
+        else:
+            raise RegexNotFoundError('Unable to extract video_id')
 
         player = self._download_webpage(
-            'http://news.sportbox.ru/vdl/player/media/%s' % video_id,
+            'http://news.sportbox.ru/vdl/player/%s/%s' % (media_type, video_id),
             display_id, 'Downloading player webpage')
 
         hls = self._search_regex(