]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/vimeo.py
Set the extra_info inside YoutubeDL.process_ie_result and set only if the keys are...
[yt-dlp.git] / youtube_dl / extractor / vimeo.py
CommitLineData
93b22c78 1# encoding: utf-8
b3d14cbf
PH
2import json
3import re
caeefc29 4import itertools
b3d14cbf
PH
5
6from .common import InfoExtractor
7from ..utils import (
8 compat_urllib_parse,
9 compat_urllib_request,
10
11 clean_html,
12 get_element_by_attribute,
13 ExtractorError,
55b3e45b 14 RegexNotFoundError,
b3d14cbf 15 std_headers,
9d4660ca 16 unsmuggle_url,
b3d14cbf
PH
17)
18
19class VimeoIE(InfoExtractor):
20 """Information extractor for vimeo.com."""
21
22 # _VALID_URL matches Vimeo URLs
1003d108 23 _VALID_URL = r'(?P<proto>https?://)?(?:(?:www|player)\.)?vimeo(?P<pro>pro)?\.com/(?:(?:(?:groups|album)/[^/]+)|(?:.*?)/)?(?P<direct_link>play_redirect_hls\?clip_id=)?(?:videos?/)?(?P<id>[0-9]+)/?(?:[?].*)?(?:#.*)?$'
fc79158d 24 _NETRC_MACHINE = 'vimeo'
b3d14cbf 25 IE_NAME = u'vimeo'
a91b954b
JMF
26 _TESTS = [
27 {
1003d108 28 u'url': u'http://vimeo.com/56015672#at=0',
a91b954b 29 u'file': u'56015672.mp4',
b9a83651 30 u'md5': u'8879b6cc097e987f02484baf890129e5',
a91b954b
JMF
31 u'info_dict': {
32 u"upload_date": u"20121220",
33 u"description": u"This is a test case for youtube-dl.\nFor more information, see github.com/rg3/youtube-dl\nTest chars: \u2605 \" ' \u5e78 / \\ \u00e4 \u21ad \U0001d550",
34 u"uploader_id": u"user7108434",
35 u"uploader": u"Filippo Valsorda",
36 u"title": u"youtube-dl test video - \u2605 \" ' \u5e78 / \\ \u00e4 \u21ad \U0001d550",
37 },
38 },
39 {
40 u'url': u'http://vimeopro.com/openstreetmapus/state-of-the-map-us-2013/video/68093876',
41 u'file': u'68093876.mp4',
42 u'md5': u'3b5ca6aa22b60dfeeadf50b72e44ed82',
43 u'note': u'Vimeo Pro video (#1197)',
44 u'info_dict': {
45 u'uploader_id': u'openstreetmapus',
46 u'uploader': u'OpenStreetMap US',
47 u'title': u'Andy Allan - Putting the Carto into OpenStreetMap Cartography',
48 },
49 },
aa32314d
JMF
50 {
51 u'url': u'http://player.vimeo.com/video/54469442',
52 u'file': u'54469442.mp4',
53 u'md5': u'619b811a4417aa4abe78dc653becf511',
54 u'note': u'Videos that embed the url in the player page',
55 u'info_dict': {
56 u'title': u'Kathy Sierra: Building the minimum Badass User, Business of Software',
57 u'uploader': u'The BLN & Business of Software',
58 },
93b22c78
JMF
59 },
60 {
61 u'url': u'http://vimeo.com/68375962',
62 u'file': u'68375962.mp4',
63 u'md5': u'aaf896bdb7ddd6476df50007a0ac0ae7',
64 u'note': u'Video protected with password',
65 u'info_dict': {
66 u'title': u'youtube-dl password protected test video',
67 u'upload_date': u'20130614',
68 u'uploader_id': u'user18948128',
69 u'uploader': u'Jaime Marquínez Ferrándiz',
70 },
71 u'params': {
72 u'videopassword': u'youtube-dl',
73 },
74 },
a91b954b 75 ]
b3d14cbf 76
fc79158d
JMF
77 def _login(self):
78 (username, password) = self._get_login_info()
79 if username is None:
80 return
81 self.report_login()
82 login_url = 'https://vimeo.com/log_in'
83 webpage = self._download_webpage(login_url, None, False)
84 token = re.search(r'xsrft: \'(.*?)\'', webpage).group(1)
85 data = compat_urllib_parse.urlencode({'email': username,
86 'password': password,
87 'action': 'login',
88 'service': 'vimeo',
89 'token': token,
90 })
91 login_request = compat_urllib_request.Request(login_url, data)
92 login_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
93 login_request.add_header('Cookie', 'xsrft=%s' % token)
94 self._download_webpage(login_request, None, False, u'Wrong login info')
95
b3d14cbf 96 def _verify_video_password(self, url, video_id, webpage):
c6c19746 97 password = self._downloader.params.get('videopassword', None)
b3d14cbf 98 if password is None:
c6c19746 99 raise ExtractorError(u'This video is protected by a password, use the --video-password option')
b3d14cbf
PH
100 token = re.search(r'xsrft: \'(.*?)\'', webpage).group(1)
101 data = compat_urllib_parse.urlencode({'password': password,
102 'token': token})
103 # I didn't manage to use the password with https
104 if url.startswith('https'):
105 pass_url = url.replace('https','http')
106 else:
107 pass_url = url
108 password_request = compat_urllib_request.Request(pass_url+'/password', data)
109 password_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
110 password_request.add_header('Cookie', 'xsrft=%s' % token)
111 self._download_webpage(password_request, video_id,
112 u'Verifying the password',
113 u'Wrong password')
114
fc79158d
JMF
115 def _real_initialize(self):
116 self._login()
117
b3d14cbf 118 def _real_extract(self, url, new_video=True):
9d4660ca
PH
119 url, data = unsmuggle_url(url)
120 headers = std_headers
121 if data is not None:
122 headers = headers.copy()
123 headers.update(data)
124
b3d14cbf
PH
125 # Extract ID from URL
126 mobj = re.match(self._VALID_URL, url)
127 if mobj is None:
128 raise ExtractorError(u'Invalid URL: %s' % url)
129
130 video_id = mobj.group('id')
131 if not mobj.group('proto'):
132 url = 'https://' + url
a91b954b
JMF
133 elif mobj.group('pro'):
134 url = 'http://player.vimeo.com/video/' + video_id
135 elif mobj.group('direct_link'):
b3d14cbf
PH
136 url = 'https://vimeo.com/' + video_id
137
138 # Retrieve video webpage to extract further information
9d4660ca 139 request = compat_urllib_request.Request(url, None, headers)
b3d14cbf
PH
140 webpage = self._download_webpage(request, video_id)
141
142 # Now we begin extracting as much information as we can from what we
143 # retrieved. First we extract the information common to all extractors,
144 # and latter we extract those that are Vimeo specific.
145 self.report_extraction(video_id)
146
147 # Extract the config JSON
148 try:
93b22c78
JMF
149 try:
150 config_url = self._html_search_regex(
151 r' data-config-url="(.+?)"', webpage, u'config URL')
152 config_json = self._download_webpage(config_url, video_id)
153 config = json.loads(config_json)
154 except RegexNotFoundError:
155 # For pro videos or player.vimeo.com urls
156 config = self._search_regex([r' = {config:({.+?}),assets:', r'c=({.+?);'],
157 webpage, u'info section', flags=re.DOTALL)
158 config = json.loads(config)
71907db3 159 except Exception as e:
b3d14cbf
PH
160 if re.search('The creator of this video has not given you permission to embed it on this domain.', webpage):
161 raise ExtractorError(u'The author has restricted the access to this video, try with the "--referer" option')
162
93b22c78 163 if re.search('<form[^>]+?id="pw_form"', webpage) is not None:
b3d14cbf
PH
164 self._verify_video_password(url, video_id, webpage)
165 return self._real_extract(url)
166 else:
71907db3
PH
167 raise ExtractorError(u'Unable to extract info section',
168 cause=e)
b3d14cbf
PH
169
170 # Extract title
171 video_title = config["video"]["title"]
172
173 # Extract uploader and uploader_id
174 video_uploader = config["video"]["owner"]["name"]
175 video_uploader_id = config["video"]["owner"]["url"].split('/')[-1] if config["video"]["owner"]["url"] else None
176
177 # Extract video thumbnail
aa32314d
JMF
178 video_thumbnail = config["video"].get("thumbnail")
179 if video_thumbnail is None:
180 _, video_thumbnail = sorted((int(width), t_url) for (width, t_url) in config["video"]["thumbs"].items())[-1]
b3d14cbf
PH
181
182 # Extract video description
9c2ade40
JMF
183 video_description = None
184 try:
185 video_description = get_element_by_attribute("itemprop", "description", webpage)
186 if video_description: video_description = clean_html(video_description)
187 except AssertionError as err:
188 # On some pages like (http://player.vimeo.com/video/54469442) the
189 # html tags are not closed, python 2.6 cannot handle it
190 if err.args[0] == 'we should not get here!':
191 pass
192 else:
193 raise
b3d14cbf
PH
194
195 # Extract upload date
196 video_upload_date = None
197 mobj = re.search(r'<meta itemprop="dateCreated" content="(\d{4})-(\d{2})-(\d{2})T', webpage)
198 if mobj is not None:
199 video_upload_date = mobj.group(1) + mobj.group(2) + mobj.group(3)
200
201 # Vimeo specific: extract request signature and timestamp
202 sig = config['request']['signature']
203 timestamp = config['request']['timestamp']
204
205 # Vimeo specific: extract video codec and quality information
206 # First consider quality, then codecs, then take everything
a6387bfd 207 codecs = [('vp6', 'flv'), ('vp8', 'flv'), ('h264', 'mp4')]
b3d14cbf 208 files = { 'hd': [], 'sd': [], 'other': []}
aa32314d 209 config_files = config["video"].get("files") or config["request"].get("files")
b3d14cbf 210 for codec_name, codec_extension in codecs:
a6387bfd
JE
211 for quality in config_files.get(codec_name, []):
212 format_id = '-'.join((codec_name, quality)).lower()
213 key = quality if quality in files else 'other'
214 video_url = None
215 if isinstance(config_files[codec_name], dict):
216 file_info = config_files[codec_name][quality]
217 video_url = file_info.get('url')
b3d14cbf 218 else:
a6387bfd
JE
219 file_info = {}
220 if video_url is None:
221 video_url = "http://player.vimeo.com/play_redirect?clip_id=%s&sig=%s&time=%s&quality=%s&codecs=%s&type=moogaloop_local&embed_location=" \
222 %(video_id, sig, timestamp, quality, codec_name.upper())
223
224 files[key].append({
225 'ext': codec_extension,
226 'url': video_url,
227 'format_id': format_id,
228 'width': file_info.get('width'),
229 'height': file_info.get('height'),
230 })
231 formats = []
232 for key in ('other', 'sd', 'hd'):
233 formats += files[key]
234 if len(formats) == 0:
b3d14cbf
PH
235 raise ExtractorError(u'No known codec found')
236
b3d14cbf
PH
237 return [{
238 'id': video_id,
b3d14cbf
PH
239 'uploader': video_uploader,
240 'uploader_id': video_uploader_id,
241 'upload_date': video_upload_date,
242 'title': video_title,
b3d14cbf
PH
243 'thumbnail': video_thumbnail,
244 'description': video_description,
a6387bfd 245 'formats': formats,
b3d14cbf 246 }]
caeefc29
JMF
247
248
249class VimeoChannelIE(InfoExtractor):
250 IE_NAME = u'vimeo:channel'
251 _VALID_URL = r'(?:https?://)?vimeo.\com/channels/(?P<id>[^/]+)'
252 _MORE_PAGES_INDICATOR = r'<a.+?rel="next"'
253
254 def _real_extract(self, url):
255 mobj = re.match(self._VALID_URL, url)
256 channel_id = mobj.group('id')
257 video_ids = []
258
259 for pagenum in itertools.count(1):
260 webpage = self._download_webpage('http://vimeo.com/channels/%s/videos/page:%d' % (channel_id, pagenum),
261 channel_id, u'Downloading page %s' % pagenum)
262 video_ids.extend(re.findall(r'id="clip_(\d+?)"', webpage))
263 if re.search(self._MORE_PAGES_INDICATOR, webpage, re.DOTALL) is None:
264 break
265
266 entries = [self.url_result('http://vimeo.com/%s' % video_id, 'Vimeo')
267 for video_id in video_ids]
268 channel_title = self._html_search_regex(r'<a href="/channels/%s">(.*?)</a>' % channel_id,
269 webpage, u'channel title')
270 return {'_type': 'playlist',
271 'id': channel_id,
272 'title': channel_title,
273 'entries': entries,
274 }