1 from __future__ import unicode_literals
7 from .common import InfoExtractor
18 class ImdbIE(InfoExtractor):
20 IE_DESC = 'Internet Movie Database trailers'
21 _VALID_URL = r'https?://(?:www|m)\.imdb\.com/(?:video|title|list).*?[/-]vi(?P<id>\d+)'
24 'url': 'http://www.imdb.com/video/imdb/vi2524815897',
29 'description': 'md5:87bd0bdc61e351f21f20d2d7441cb4e7',
33 'url': 'http://www.imdb.com/video/_/vi2524815897',
34 'only_matching': True,
36 'url': 'http://www.imdb.com/title/tt1667889/?ref_=ext_shr_eml_vi#lb-vi2524815897',
37 'only_matching': True,
39 'url': 'http://www.imdb.com/title/tt1667889/#lb-vi2524815897',
40 'only_matching': True,
42 'url': 'http://www.imdb.com/videoplayer/vi1562949145',
43 'only_matching': True,
45 'url': 'http://www.imdb.com/title/tt4218696/videoplayer/vi2608641561',
46 'only_matching': True,
48 'url': 'https://www.imdb.com/list/ls009921623/videoplayer/vi260482329',
49 'only_matching': True,
52 def _real_extract(self, url):
53 video_id = self._match_id(url)
55 data = self._download_json(
56 'https://www.imdb.com/ve/data/VIDEO_PLAYBACK_DATA', video_id,
58 'key': base64.b64encode(json.dumps({
59 'type': 'VIDEO_PLAYER',
60 'subType': 'FORCE_LEGACY',
61 'id': 'vi%s' % video_id,
62 }).encode()).decode(),
65 quality = qualities(('SD', '480p', '720p', '1080p'))
67 for encoding in data['videoLegacyEncodings']:
68 if not encoding or not isinstance(encoding, dict):
70 video_url = url_or_none(encoding.get('url'))
73 ext = mimetype2ext(encoding.get(
74 'mimeType')) or determine_ext(video_url)
76 formats.extend(self._extract_m3u8_formats(
77 video_url, video_id, 'mp4', entry_protocol='m3u8_native',
78 preference=1, m3u8_id='hls', fatal=False))
80 format_id = encoding.get('definition')
82 'format_id': format_id,
85 'quality': quality(format_id),
87 self._sort_formats(formats)
89 webpage = self._download_webpage(
90 'https://www.imdb.com/video/vi' + video_id, video_id)
91 video_metadata = self._parse_json(self._search_regex(
92 r'args\.push\(\s*({.+?})\s*\)\s*;', webpage,
93 'video metadata'), video_id)
95 video_info = video_metadata.get('VIDEO_INFO')
96 if video_info and isinstance(video_info, dict):
98 video_info, lambda x: x[list(video_info.keys())[0]][0], dict)
102 title = self._html_search_meta(
103 ['og:title', 'twitter:title'], webpage) or self._html_search_regex(
104 r'<title>(.+?)</title>', webpage, 'title',
105 default=None) or info['videoTitle']
110 'alt_title': info.get('videoSubTitle'),
112 'description': info.get('videoDescription'),
113 'thumbnail': url_or_none(try_get(
114 video_metadata, lambda x: x['videoSlate']['source'])),
115 'duration': parse_duration(info.get('videoRuntime')),
119 class ImdbListIE(InfoExtractor):
120 IE_NAME = 'imdb:list'
121 IE_DESC = 'Internet Movie Database lists'
122 _VALID_URL = r'https?://(?:www\.)?imdb\.com/list/ls(?P<id>\d{9})(?!/videoplayer/vi\d+)'
124 'url': 'https://www.imdb.com/list/ls009921623/',
127 'title': 'The Bourne Legacy',
128 'description': 'A list of trailers, clips, and more from The Bourne Legacy, starring Jeremy Renner and Rachel Weisz.',
133 def _real_extract(self, url):
134 list_id = self._match_id(url)
135 webpage = self._download_webpage(url, list_id)
137 self.url_result('http://www.imdb.com' + m, 'Imdb')
138 for m in re.findall(r'href="(/list/ls%s/videoplayer/vi[^"]+)"' % list_id, webpage)]
140 list_title = self._html_search_regex(
141 r'<h1[^>]+class="[^"]*header[^"]*"[^>]*>(.*?)</h1>',
142 webpage, 'list title')
143 list_description = self._html_search_regex(
144 r'<div[^>]+class="[^"]*list-description[^"]*"[^>]*><p>(.*?)</p>',
145 webpage, 'list description')
147 return self.playlist_result(entries, list_id, list_title, list_description)