[rutube] Fix extraction
authorSergey M․ <dstftw@gmail.com>
Sat, 19 Apr 2014 08:59:12 +0000 (15:59 +0700)
committerSergey M․ <dstftw@gmail.com>
Sat, 19 Apr 2014 08:59:12 +0000 (15:59 +0700)
youtube_dl/extractor/rutube.py

index f1ce6643379069373d859b3540c25e56639cac63..4f7f8cb6d2a57c8cd77f3b4cc5328105bdc2f44a 100644 (file)
@@ -43,13 +43,14 @@ class RutubeIE(InfoExtractor):
             'http://rutube.ru/api/video/%s/?format=json' % video_id,
             video_id, 'Downloading video JSON')
 
-        trackinfo = self._download_json(
-            'http://rutube.ru/api/play/trackinfo/%s/?format=json' % video_id,
-            video_id, 'Downloading trackinfo JSON')
-
         # Some videos don't have the author field
-        author = trackinfo.get('author') or {}
-        m3u8_url = trackinfo['video_balancer'].get('m3u8')
+        author = video.get('author') or {}
+
+        options = self._download_json(
+            'http://rutube.ru/api/play/options/%s/?format=json' %video_id,
+            video_id, 'Downloading options JSON')
+
+        m3u8_url = options['video_balancer'].get('m3u8')
         if m3u8_url is None:
             raise ExtractorError('Couldn\'t find m3u8 manifest url')