1 from __future__ import unicode_literals
6 from .common import InfoExtractor
12 class ImdbIE(InfoExtractor):
14 IE_DESC = 'Internet Movie Database trailers'
15 _VALID_URL = r'http://(?:www|m)\.imdb\.com/video/imdb/vi(?P<id>\d+)'
18 'url': 'http://www.imdb.com/video/imdb/vi2524815897',
22 'title': 'Ice Age: Continental Drift Trailer (No. 2) - IMDb',
23 'description': 'md5:9061c2219254e5d14e03c25c98e96a81',
27 def _real_extract(self, url):
28 video_id = self._match_id(url)
29 webpage = self._download_webpage('http://www.imdb.com/video/imdb/vi%s' % video_id, video_id)
30 descr = self._html_search_regex(
31 r'(?s)<span itemprop="description">(.*?)</span>',
32 webpage, 'description', fatal=False)
33 player_url = 'http://www.imdb.com/video/imdb/vi%s/imdb/single' % video_id
34 player_page = self._download_webpage(
35 player_url, video_id, 'Downloading player page')
36 # the player page contains the info for the default format, we have to
37 # fetch other pages for the rest of the formats
38 extra_formats = re.findall(r'href="(?P<url>%s.*?)".*?>(?P<name>.*?)<' % re.escape(player_url), player_page)
40 self._download_webpage(
41 f_url, video_id, 'Downloading info for %s format' % f_name)
42 for f_url, f_name in extra_formats]
43 format_pages.append(player_page)
45 quality = qualities(['SD', '480p', '720p'])
47 for format_page in format_pages:
48 json_data = self._search_regex(
49 r'<script[^>]+class="imdb-player-data"[^>]*?>(.*?)</script>',
50 format_page, 'json data', flags=re.DOTALL)
51 info = json.loads(json_data)
52 format_info = info['videoPlayerObject']['video']
53 f_id = format_info['ffname']
56 'url': format_info['videoInfoList'][0]['videoUrl'],
57 'quality': quality(f_id),
59 self._sort_formats(formats)
63 'title': self._og_search_title(webpage),
66 'thumbnail': format_info['slate'],
70 class ImdbListIE(InfoExtractor):
72 IE_DESC = 'Internet Movie Database lists'
73 _VALID_URL = r'http://www\.imdb\.com/list/(?P<id>[\da-zA-Z_-]{11})'
75 'url': 'http://www.imdb.com/list/JFs9NWw6XI0',
78 'title': 'March 23, 2012 Releases',
83 def _real_extract(self, url):
84 list_id = self._match_id(url)
85 webpage = self._download_webpage(url, list_id)
87 self.url_result('http://www.imdb.com' + m, 'Imdb')
88 for m in re.findall(r'href="(/video/imdb/vi[^"]+)"\s+data-type="playlist"', webpage)]
90 list_title = self._html_search_regex(
91 r'<h1 class="header">(.*?)</h1>', webpage, 'list title')
93 return self.playlist_result(entries, list_id, list_title)