]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/imdb.py
[youtube] Correct subtitle URL (Fixes #2120)
[yt-dlp.git] / youtube_dl / extractor / imdb.py
CommitLineData
ecfef3e5
PH
1from __future__ import unicode_literals
2
d8d61486
JMF
3import re
4import json
5
6from .common import InfoExtractor
7from ..utils import (
8 compat_urlparse,
9 get_element_by_attribute,
10)
11
12
13class ImdbIE(InfoExtractor):
ecfef3e5
PH
14 IE_NAME = 'imdb'
15 IE_DESC = 'Internet Movie Database trailers'
97e302a4 16 _VALID_URL = r'http://(?:www|m)\.imdb\.com/video/imdb/vi(?P<id>\d+)'
d8d61486
JMF
17
18 _TEST = {
ecfef3e5
PH
19 'url': 'http://www.imdb.com/video/imdb/vi2524815897',
20 'md5': '9f34fa777ade3a6e57a054fdbcb3a068',
21 'info_dict': {
22 'id': '2524815897',
23 'ext': 'mp4',
24 'title': 'Ice Age: Continental Drift Trailer (No. 2) - IMDb',
25 'description': 'md5:9061c2219254e5d14e03c25c98e96a81',
d8d61486
JMF
26 }
27 }
28
29 def _real_extract(self, url):
30 mobj = re.match(self._VALID_URL, url)
31 video_id = mobj.group('id')
97e302a4 32 webpage = self._download_webpage('http://www.imdb.com/video/imdb/vi%s' % video_id, video_id)
d8d61486
JMF
33 descr = get_element_by_attribute('itemprop', 'description', webpage)
34 available_formats = re.findall(
35 r'case \'(?P<f_id>.*?)\' :$\s+url = \'(?P<path>.*?)\'', webpage,
36 flags=re.MULTILINE)
37 formats = []
38 for f_id, f_path in available_formats:
d349cd22 39 f_path = f_path.strip()
d8d61486
JMF
40 format_page = self._download_webpage(
41 compat_urlparse.urljoin(url, f_path),
ecfef3e5 42 'Downloading info for %s format' % f_id)
b03d0d06
JMF
43 json_data = self._search_regex(
44 r'<script[^>]+class="imdb-player-data"[^>]*?>(.*?)</script>',
ecfef3e5 45 format_page, 'json data', flags=re.DOTALL)
d8d61486
JMF
46 info = json.loads(json_data)
47 format_info = info['videoPlayerObject']['video']
48 formats.append({
49 'format_id': f_id,
50 'url': format_info['url'],
d8d61486
JMF
51 })
52
53 return {
54 'id': video_id,
55 'title': self._og_search_title(webpage),
56 'formats': formats,
57 'description': descr,
58 'thumbnail': format_info['slate'],
d8d61486 59 }
c645c765 60
ecfef3e5 61
c645c765 62class ImdbListIE(InfoExtractor):
ecfef3e5
PH
63 IE_NAME = 'imdb:list'
64 IE_DESC = 'Internet Movie Database lists'
c645c765 65 _VALID_URL = r'http://www\.imdb\.com/list/(?P<id>[\da-zA-Z_-]{11})'
66
67 def _real_extract(self, url):
68 mobj = re.match(self._VALID_URL, url)
69 list_id = mobj.group('id')
70
71 # RSS XML is sometimes malformed
ecfef3e5
PH
72 rss = self._download_webpage('http://rss.imdb.com/list/%s' % list_id, list_id, 'Downloading list RSS')
73 list_title = self._html_search_regex(r'<title>(.*?)</title>', rss, 'list title')
c645c765 74
75 # Export is independent of actual author_id, but returns 404 if no author_id is provided.
76 # However, passing dummy author_id seems to be enough.
77 csv = self._download_webpage('http://www.imdb.com/list/export?list_id=%s&author_id=ur00000000' % list_id,
ecfef3e5 78 list_id, 'Downloading list CSV')
c645c765 79
80 entries = []
81 for item in csv.split('\n')[1:]:
82 cols = item.split(',')
83 if len(cols) < 2:
84 continue
85 item_id = cols[1][1:-1]
86 if item_id.startswith('vi'):
87 entries.append(self.url_result('http://www.imdb.com/video/imdb/%s' % item_id, 'Imdb'))
88
ecfef3e5 89 return self.playlist_result(entries, list_id, list_title)