about summary refs log tree commit diff
path: root/youtube_dl/extractor/rottentomatoes.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-09-04 11:44:13 +0100
committerRemita Amine <remitamine@gmail.com>2016-09-04 11:45:29 +0100
commit100bd86a68b5ee84669d162c9bcda31616f6596a (patch)
tree94d5f076ebcb0f2d5a08fc0349c383e01a233a66 /youtube_dl/extractor/rottentomatoes.py
parent0def758782c273e0a1c9984f895638845796715b (diff)
downloadyoutube-dl-100bd86a68b5ee84669d162c9bcda31616f6596a.tar.gz
youtube-dl-100bd86a68b5ee84669d162c9bcda31616f6596a.tar.xz
youtube-dl-100bd86a68b5ee84669d162c9bcda31616f6596a.zip
[rottentomatoes] delegate extraction to InternetVideoArchiveIE
Diffstat (limited to 'youtube_dl/extractor/rottentomatoes.py')
-rw-r--r--youtube_dl/extractor/rottentomatoes.py25
1 files changed, 6 insertions, 19 deletions
diff --git a/youtube_dl/extractor/rottentomatoes.py b/youtube_dl/extractor/rottentomatoes.py
index df39ed3f2..23abf7a27 100644
--- a/youtube_dl/extractor/rottentomatoes.py
+++ b/youtube_dl/extractor/rottentomatoes.py
@@ -1,7 +1,7 @@
 from __future__ import unicode_literals
 
 from .common import InfoExtractor
-from ..utils import js_to_json
+from .internetvideoarchive import InternetVideoArchiveIE
 
 
 class RottenTomatoesIE(InfoExtractor):
@@ -13,6 +13,7 @@ class RottenTomatoesIE(InfoExtractor):
             'id': '11028566',
             'ext': 'mp4',
             'title': 'Toy Story 3',
+            'description': 'From the creators of the beloved TOY STORY films, comes a story that will reunite the gang in a whole new way.',
             'thumbnail': 're:^https?://.*\.jpg$',
         },
     }
@@ -20,26 +21,12 @@ class RottenTomatoesIE(InfoExtractor):
     def _real_extract(self, url):
         video_id = self._match_id(url)
         webpage = self._download_webpage(url, video_id)
-
-        params = self._parse_json(
-            self._search_regex(r'(?s)RTVideo\(({.+?})\);', webpage, 'player parameters'),
-            video_id, transform_source=lambda s: js_to_json(s.replace('window.location.href', '""')))
-
-        formats = []
-        if params.get('urlHLS'):
-            formats.extend(self._extract_m3u8_formats(
-                params['urlHLS'], video_id, ext='mp4',
-                entry_protocol='m3u8_native', m3u8_id='hls', fatal=False))
-        if params.get('urlMP4'):
-            formats.append({
-                'url': params['urlMP4'],
-                'format_id': 'mp4',
-            })
-        self._sort_formats(formats)
+        iva_id = self._search_regex(r'publishedid=(\d+)', webpage, 'internet video archive id')
 
         return {
+            '_type': 'url_transparent',
+            'url': 'http://video.internetvideoarchive.net/player/6/configuration.ashx?domain=www.videodetective.com&customerid=69249&playerid=641&publishedid=' + iva_id,
+            'ie_key': InternetVideoArchiveIE.ie_key(),
             'id': video_id,
             'title': self._og_search_title(webpage),
-            'formats': formats,
-            'thumbnail': params.get('thumbnailImg'),
         }