summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-12-01 18:20:36 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-12-01 18:20:36 +0100
commit05177b34a62e3a45417ec1937650d43c20ebdfab (patch)
tree7da9ea7b086b8012f6fc266c750a3f7084bcee18
parentc41a9650c3b8c5430cd21661d668ac9fb346e397 (diff)
downloadyoutube-dl-05177b34a62e3a45417ec1937650d43c20ebdfab.tar.gz
youtube-dl-05177b34a62e3a45417ec1937650d43c20ebdfab.tar.xz
youtube-dl-05177b34a62e3a45417ec1937650d43c20ebdfab.zip
[rutube] Extract m3u8 formats (fixes #3984)
-rw-r--r--youtube_dl/extractor/rutube.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/rutube.py b/youtube_dl/extractor/rutube.py
index 0c8790da2..6941d96fb 100644
--- a/youtube_dl/extractor/rutube.py
+++ b/youtube_dl/extractor/rutube.py
@@ -53,6 +53,7 @@ class RutubeIE(InfoExtractor):
         m3u8_url = options['video_balancer'].get('m3u8')
         if m3u8_url is None:
             raise ExtractorError('Couldn\'t find m3u8 manifest url')
+        formats = self._extract_m3u8_formats(m3u8_url, video_id, ext='mp4')
 
         return {
             'id': video['id'],
@@ -60,8 +61,7 @@ class RutubeIE(InfoExtractor):
             'description': video['description'],
             'duration': video['duration'],
             'view_count': video['hits'],
-            'url': m3u8_url,
-            'ext': 'mp4',
+            'formats': formats,
             'thumbnail': video['thumbnail_url'],
             'uploader': author.get('name'),
             'uploader_id': compat_str(author['id']) if author else None,