aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_dl/extractor/rottentomatoes.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-06-09 17:54:27 -0500
committerJesús <heckyel@hyperbola.info>2021-06-09 17:54:27 -0500
commit27fe903c511691c078942bef5ee9a05a43b15c8f (patch)
tree50f30ab2ec749b965869518c0a28651f8677f0d3 /hypervideo_dl/extractor/rottentomatoes.py
downloadhypervideo-27fe903c511691c078942bef5ee9a05a43b15c8f.tar.lz
hypervideo-27fe903c511691c078942bef5ee9a05a43b15c8f.tar.xz
hypervideo-27fe903c511691c078942bef5ee9a05a43b15c8f.zip
initial
Diffstat (limited to 'hypervideo_dl/extractor/rottentomatoes.py')
-rw-r--r--hypervideo_dl/extractor/rottentomatoes.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/hypervideo_dl/extractor/rottentomatoes.py b/hypervideo_dl/extractor/rottentomatoes.py
new file mode 100644
index 0000000..14c8e82
--- /dev/null
+++ b/hypervideo_dl/extractor/rottentomatoes.py
@@ -0,0 +1,32 @@
+from __future__ import unicode_literals
+
+from .common import InfoExtractor
+from .internetvideoarchive import InternetVideoArchiveIE
+
+
+class RottenTomatoesIE(InfoExtractor):
+ _VALID_URL = r'https?://(?:www\.)?rottentomatoes\.com/m/[^/]+/trailers/(?P<id>\d+)'
+
+ _TEST = {
+ 'url': 'http://www.rottentomatoes.com/m/toy_story_3/trailers/11028566/',
+ 'info_dict': {
+ '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': r're:^https?://.*\.jpg$',
+ },
+ }
+
+ def _real_extract(self, url):
+ video_id = self._match_id(url)
+ webpage = self._download_webpage(url, video_id)
+ 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),
+ }