]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/generic.py
[nosvideo] Remove determine_ext usage (#3655)
[yt-dlp.git] / youtube_dl / extractor / generic.py
CommitLineData
cfe50f04
JMF
1# encoding: utf-8
2
79649588
PH
3from __future__ import unicode_literals
4
9b122384
PH
5import os
6import re
7
8from .common import InfoExtractor
fc9713a1 9from .youtube import YoutubeIE
9b122384 10from ..utils import (
9b122384 11 compat_urllib_parse,
a5caba1e 12 compat_urlparse,
f7300c5c 13 compat_xml_parse_error,
9b122384 14
b759a0d4 15 determine_ext,
9b122384 16 ExtractorError,
c8e9a235 17 float_or_none,
aa94a6d3 18 HEADRequest,
ed2d6a19 19 orderedSet,
bcf89ce6 20 parse_xml,
9d4660ca
PH
21 smuggle_url,
22 unescapeHTML,
42393ce2 23 unified_strdate,
4d54ef20 24 unsmuggle_url,
42393ce2 25 url_basename,
9b122384 26)
cfe50f04 27from .brightcove import BrightcoveIE
c0d0b01f 28from .ooyala import OoyalaIE
93d020dd 29from .rutv import RUTVIE
cb3ac1c6 30from .smotri import SmotriIE
9b122384 31
0838239e 32
9b122384 33class GenericIE(InfoExtractor):
79649588 34 IE_DESC = 'Generic downloader that works on some sites'
9b122384 35 _VALID_URL = r'.*'
79649588 36 IE_NAME = 'generic'
cfe50f04
JMF
37 _TESTS = [
38 {
79649588 39 'url': 'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html',
d360a146 40 'md5': '85b90ccc9d73b4acd9138d3af4c27f89',
79649588 41 'info_dict': {
d360a146
S
42 'id': '13601338388002',
43 'ext': 'mp4',
79649588
PH
44 'uploader': 'www.hodiho.fr',
45 'title': 'R\u00e9gis plante sa Jeep',
cfe50f04
JMF
46 }
47 },
c19f7764
JMF
48 # bandcamp page with custom domain
49 {
79649588
PH
50 'add_ie': ['Bandcamp'],
51 'url': 'http://bronyrock.com/track/the-pony-mash',
79649588 52 'info_dict': {
fd50bf62
S
53 'id': '3235767654',
54 'ext': 'mp3',
79649588
PH
55 'title': 'The Pony Mash',
56 'uploader': 'M_Pallante',
c19f7764 57 },
79649588 58 'skip': 'There is a limit of 200 free downloads / month for the test song',
c19f7764 59 },
eeb165e6 60 # embedded brightcove video
dd5bcdc4
JMF
61 # it also tests brightcove videos that need to set the 'Referer' in the
62 # http requests
eeb165e6 63 {
79649588
PH
64 'add_ie': ['Brightcove'],
65 'url': 'http://www.bfmtv.com/video/bfmbusiness/cours-bourse/cours-bourse-l-analyse-technique-154522/',
66 'info_dict': {
67 'id': '2765128793001',
68 'ext': 'mp4',
69 'title': 'Le cours de bourse : l’analyse technique',
70 'description': 'md5:7e9ad046e968cb2d1114004aba466fd9',
71 'uploader': 'BFM BUSINESS',
eeb165e6 72 },
79649588
PH
73 'params': {
74 'skip_download': True,
eeb165e6
JMF
75 },
76 },
17ab4d3b
PH
77 {
78 # https://github.com/rg3/youtube-dl/issues/2253
79 'url': 'http://bcove.me/i6nfkrc3',
17ab4d3b
PH
80 'md5': '0ba9446db037002366bab3b3eb30c88c',
81 'info_dict': {
fd50bf62
S
82 'id': '3101154703001',
83 'ext': 'mp4',
17ab4d3b
PH
84 'title': 'Still no power',
85 'uploader': 'thestar.com',
86 'description': 'Mississauga resident David Farmer is still out of power as a result of the ice storm a month ago. To keep the house warm, Farmer cuts wood from his property for a wood burning stove downstairs.',
87 },
88 'add_ie': ['Brightcove'],
89 },
0479c625
S
90 {
91 'url': 'http://www.championat.com/video/football/v/87/87499.html',
92 'md5': 'fb973ecf6e4a78a67453647444222983',
93 'info_dict': {
94 'id': '3414141473001',
95 'ext': 'mp4',
96 'title': 'Видео. Удаление Дзагоева (ЦСКА)',
97 'description': 'Онлайн-трансляция матча ЦСКА - "Волга"',
98 'uploader': 'Championat',
99 },
100 },
42393ce2
PH
101 # Direct link to a video
102 {
79649588 103 'url': 'http://media.w3.org/2010/05/sintel/trailer.mp4',
79649588
PH
104 'md5': '67d406c2bcb6af27fa886f31aa934bbe',
105 'info_dict': {
106 'id': 'trailer',
89ef304b 107 'ext': 'mp4',
79649588
PH
108 'title': 'trailer',
109 'upload_date': '20100513',
42393ce2 110 }
c0d0b01f
JMF
111 },
112 # ooyala video
113 {
79649588
PH
114 'url': 'http://www.rollingstone.com/music/videos/norwegian-dj-cashmere-cat-goes-spartan-on-with-me-premiere-20131219',
115 'md5': '5644c6ca5d5782c1d0d350dad9bd840c',
116 'info_dict': {
117 'id': 'BwY2RxaTrTkslxOfcan0UCf0YqyvWysJ',
118 'ext': 'mp4',
3486df38 119 'title': '2cc213299525360.mov', # that's what we get
c0d0b01f
JMF
120 },
121 },
89ef304b
PH
122 # google redirect
123 {
124 'url': 'http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&ved=0CCUQtwIwAA&url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DcmQHVoWB5FY&ei=F-sNU-LLCaXk4QT52ICQBQ&usg=AFQjCNEw4hL29zgOohLXvpJ-Bdh2bils1Q&bvm=bv.61965928,d.bGE',
125 'info_dict': {
126 'id': 'cmQHVoWB5FY',
127 'ext': 'mp4',
128 'upload_date': '20130224',
129 'uploader_id': 'TheVerge',
130 'description': 'Chris Ziegler takes a look at the Alcatel OneTouch Fire and the ZTE Open; two of the first Firefox OS handsets to be officially announced.',
131 'uploader': 'The Verge',
132 'title': 'First Firefox OS phones side-by-side',
133 },
134 'params': {
135 'skip_download': False,
136 }
f55a1f0a 137 },
1b86cc41 138 # embed.ly video
139 {
140 'url': 'http://www.tested.com/science/weird/460206-tested-grinding-coffee-2000-frames-second/',
141 'info_dict': {
142 'id': '9ODmcdjQcHQ',
143 'ext': 'mp4',
0a5bce56
PH
144 'title': 'Tested: Grinding Coffee at 2000 Frames Per Second',
145 'upload_date': '20140225',
146 'description': 'md5:06a40fbf30b220468f1e0957c0f558ff',
147 'uploader': 'Tested',
148 'uploader_id': 'testedcom',
1b86cc41 149 },
150 # No need to test YoutubeIE here
151 'params': {
152 'skip_download': True,
153 },
154 },
60cc4dc4
PH
155 # funnyordie embed
156 {
157 'url': 'http://www.theguardian.com/world/2014/mar/11/obama-zach-galifianakis-between-two-ferns',
158 'md5': '7cf780be104d40fea7bae52eed4a470e',
159 'info_dict': {
160 'id': '18e820ec3f',
161 'ext': 'mp4',
162 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama',
163 'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',
93d020dd 164 },
60cc4dc4 165 },
93d020dd
S
166 # RUTV embed
167 {
168 'url': 'http://www.rg.ru/2014/03/15/reg-dfo/anklav-anons.html',
169 'info_dict': {
170 'id': '776940',
171 'ext': 'mp4',
172 'title': 'Охотское море стало целиком российским',
173 'description': 'md5:5ed62483b14663e2a95ebbe115eb8f43',
174 },
175 'params': {
176 # m3u8 download
177 'skip_download': True,
178 },
aab74fa1
PH
179 },
180 # Embedded TED video
181 {
182 'url': 'http://en.support.wordpress.com/videos/ted-talks/',
183 'md5': 'deeeabcc1085eb2ba205474e7235a3d5',
184 'info_dict': {
185 'id': '981',
186 'ext': 'mp4',
187 'title': 'My web playroom',
188 'uploader': 'Ze Frank',
189 'description': 'md5:ddb2a40ecd6b6a147e400e535874947b',
190 }
60cc4dc4 191 },
5c386252 192 # Embeded Ustream video
193 {
194 'url': 'http://www.american.edu/spa/pti/nsa-privacy-janus-2014.cfm',
195 'md5': '27b99cdb639c9b12a79bca876a073417',
196 'info_dict': {
ca6aada4 197 'id': '45734260',
198 'ext': 'flv',
199 'uploader': 'AU SPA: The NSA and Privacy',
5c386252 200 'title': 'NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman'
201 }
202 },
d95e35d6
S
203 # nowvideo embed hidden behind percent encoding
204 {
205 'url': 'http://www.waoanime.tv/the-super-dimension-fortress-macross-episode-1/',
206 'md5': '2baf4ddd70f697d94b1c18cf796d5107',
207 'info_dict': {
208 'id': '06e53103ca9aa',
209 'ext': 'flv',
210 'title': 'Macross Episode 001 Watch Macross Episode 001 onl',
211 'description': 'No description',
212 },
0f2a2ba1 213 },
893f8832
PH
214 # arte embed
215 {
216 'url': 'http://www.tv-replay.fr/redirection/20-03-14/x-enius-arte-10753389.html',
217 'md5': '7653032cbb25bf6c80d80f217055fa43',
218 'info_dict': {
219 'id': '048195-004_PLUS7-F',
220 'ext': 'flv',
221 'title': 'X:enius',
222 'description': 'md5:d5fdf32ef6613cdbfd516ae658abf168',
223 'upload_date': '20140320',
224 },
225 'params': {
226 'skip_download': 'Requires rtmpdump'
227 }
228 },
cb3ac1c6
S
229 # smotri embed
230 {
231 'url': 'http://rbctv.rbc.ru/archive/news/562949990879132.shtml',
232 'md5': 'ec40048448e9284c9a1de77bb188108b',
233 'info_dict': {
234 'id': 'v27008541fad',
235 'ext': 'mp4',
236 'title': 'Крым и Севастополь вошли в состав России',
237 'description': 'md5:fae01b61f68984c7bd2fa741e11c3175',
238 'duration': 900,
239 'upload_date': '20140318',
240 'uploader': 'rbctv_2012_4',
241 'uploader_id': 'rbctv_2012_4',
242 },
243 },
fa35cdad
PH
244 # Condé Nast embed
245 {
246 'url': 'http://www.wired.com/2014/04/honda-asimo/',
247 'md5': 'ba0dfe966fa007657bd1443ee672db0f',
248 'info_dict': {
249 'id': '53501be369702d3275860000',
250 'ext': 'mp4',
251 'title': 'Honda’s New Asimo Robot Is More Human Than Ever',
252 }
ebd3c7b3
PH
253 },
254 # Dailymotion embed
255 {
256 'url': 'http://www.spi0n.com/zap-spi0n-com-n216/',
257 'md5': '441aeeb82eb72c422c7f14ec533999cd',
258 'info_dict': {
259 'id': 'k2mm4bCdJ6CQ2i7c8o2',
260 'ext': 'mp4',
261 'title': 'Le Zap de Spi0n n°216 - Zapping du Web',
262 'uploader': 'Spi0n',
263 },
264 'add_ie': ['Dailymotion'],
2b88feed
PH
265 },
266 # YouTube embed
267 {
268 'url': 'http://www.badzine.de/ansicht/datum/2014/06/09/so-funktioniert-die-neue-englische-badminton-liga.html',
269 'info_dict': {
270 'id': 'FXRb4ykk4S0',
271 'ext': 'mp4',
272 'title': 'The NBL Auction 2014',
273 'uploader': 'BADMINTON England',
274 'uploader_id': 'BADMINTONEvents',
275 'upload_date': '20140603',
276 'description': 'md5:9ef128a69f1e262a700ed83edb163a73',
277 },
278 'add_ie': ['Youtube'],
279 'params': {
280 'skip_download': True,
281 }
282 },
c5cd249e
JMF
283 # MTVSercices embed
284 {
285 'url': 'http://www.gametrailers.com/news-post/76093/north-america-europe-is-getting-that-mario-kart-8-mercedes-dlc-too',
286 'md5': '35727f82f58c76d996fc188f9755b0d5',
287 'info_dict': {
288 'id': '0306a69b-8adf-4fb5-aace-75f8e8cbfca9',
289 'ext': 'mp4',
290 'title': 'Review',
291 'description': 'Mario\'s life in the fast lane has never looked so good.',
292 },
293 },
61013473 294 # YouTube embed via <data-embed-url="">
295 {
296 'url': 'https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM',
61013473 297 'info_dict': {
ed2d6a19 298 'id': 'jpSGZsgga_I',
61013473 299 'ext': 'mp4',
ed2d6a19
PH
300 'title': 'Asphalt 8: Airborne - Launch Trailer',
301 'uploader': 'Gameloft',
302 'uploader_id': 'gameloft',
303 'upload_date': '20130821',
304 'description': 'md5:87bd95f13d8be3e7da87a5f2c443106a',
305 },
306 'params': {
307 'skip_download': True,
61013473 308 }
c8e9a235
PH
309 },
310 # Camtasia studio
311 {
312 'url': 'http://www.ll.mit.edu/workshops/education/videocourses/antennas/lecture1/video/',
313 'playlist': [{
314 'md5': '0c5e352edabf715d762b0ad4e6d9ee67',
315 'info_dict': {
316 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
317 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - video1',
318 'ext': 'flv',
319 'duration': 2235.90,
320 }
321 }, {
322 'md5': '10e4bb3aaca9fd630e273ff92d9f3c63',
323 'info_dict': {
324 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final_PIP',
325 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - pip',
326 'ext': 'flv',
327 'duration': 2235.93,
328 }
329 }],
330 'info_dict': {
331 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
332 }
4d805e06
PH
333 },
334 # Flowplayer
335 {
336 'url': 'http://www.handjobhub.com/video/busty-blonde-siri-tit-fuck-while-wank-6313.html',
337 'md5': '9d65602bf31c6e20014319c7d07fba27',
338 'info_dict': {
339 'id': '5123ea6d5e5a7',
340 'ext': 'mp4',
341 'age_limit': 18,
342 'uploader': 'www.handjobhub.com',
343 'title': 'Busty Blonde Siri Tit Fuck While Wank at Handjob Hub',
344 }
0990305d
PH
345 },
346 # RSS feed
347 {
348 'url': 'http://phihag.de/2014/youtube-dl/rss2.xml',
349 'info_dict': {
350 'id': 'http://phihag.de/2014/youtube-dl/rss2.xml',
351 'title': 'Zero Punctuation',
352 'description': 're:'
353 },
354 'playlist_mincount': 11,
22a6f150
PH
355 },
356 # Multiple brightcove videos
357 # https://github.com/rg3/youtube-dl/issues/2283
358 {
359 'url': 'http://www.newyorker.com/online/blogs/newsdesk/2014/01/always-never-nuclear-command-and-control.html',
360 'info_dict': {
361 'id': 'always-never',
362 'title': 'Always / Never - The New Yorker',
363 },
364 'playlist_count': 3,
365 'params': {
366 'extract_flat': False,
367 'skip_download': True,
368 }
fa35cdad 369 }
cfe50f04 370 ]
9b122384
PH
371
372 def report_download_webpage(self, video_id):
373 """Report webpage download."""
374 if not self._downloader.params.get('test', False):
79649588 375 self._downloader.report_warning('Falling back on generic information extractor.')
9b122384
PH
376 super(GenericIE, self).report_download_webpage(video_id)
377
378 def report_following_redirect(self, new_url):
379 """Report information extraction."""
79649588 380 self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
9b122384 381
4fc946b5
PH
382 def _extract_rss(self, url, video_id, doc):
383 playlist_title = doc.find('./channel/title').text
384 playlist_desc_el = doc.find('./channel/description')
385 playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
386
387 entries = [{
388 '_type': 'url',
389 'url': e.find('link').text,
390 'title': e.find('title').text,
391 } for e in doc.findall('./channel/item')]
392
393 return {
394 '_type': 'playlist',
395 'id': url,
396 'title': playlist_title,
397 'description': playlist_desc,
398 'entries': entries,
399 }
400
c8e9a235
PH
401 def _extract_camtasia(self, url, video_id, webpage):
402 """ Returns None if no camtasia video can be found. """
403
404 camtasia_cfg = self._search_regex(
405 r'fo\.addVariable\(\s*"csConfigFile",\s*"([^"]+)"\s*\);',
406 webpage, 'camtasia configuration file', default=None)
407 if camtasia_cfg is None:
408 return None
409
410 title = self._html_search_meta('DC.title', webpage, fatal=True)
411
412 camtasia_url = compat_urlparse.urljoin(url, camtasia_cfg)
413 camtasia_cfg = self._download_xml(
414 camtasia_url, video_id,
415 note='Downloading camtasia configuration',
416 errnote='Failed to download camtasia configuration')
417 fileset_node = camtasia_cfg.find('./playlist/array/fileset')
418
419 entries = []
420 for n in fileset_node.getchildren():
421 url_n = n.find('./uri')
422 if url_n is None:
423 continue
424
425 entries.append({
426 'id': os.path.splitext(url_n.text.rpartition('/')[2])[0],
427 'title': '%s - %s' % (title, n.tag),
428 'url': compat_urlparse.urljoin(url, url_n.text),
429 'duration': float_or_none(n.find('./duration').text),
430 })
431
432 return {
433 '_type': 'playlist',
434 'entries': entries,
435 'title': title,
436 }
437
9b122384 438 def _real_extract(self, url):
ebd3c7b3
PH
439 if url.startswith('//'):
440 return {
441 '_type': 'url',
20991253 442 'url': self.http_scheme() + url,
ebd3c7b3
PH
443 }
444
a7130543
JMF
445 parsed_url = compat_urlparse.urlparse(url)
446 if not parsed_url.scheme:
04b4d394
PH
447 default_search = self._downloader.params.get('default_search')
448 if default_search is None:
1f7ccb90 449 default_search = 'fixup_error'
04b4d394 450
1f7ccb90 451 if default_search in ('auto', 'auto_warning', 'fixup_error'):
04b4d394
PH
452 if '/' in url:
453 self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
454 return self.url_result('http://' + url)
1f7ccb90 455 elif default_search != 'fixup_error':
9c1fc022 456 if default_search == 'auto_warning':
0e67ab0d
PH
457 if re.match(r'^(?:url|URL)$', url):
458 raise ExtractorError(
459 'Invalid URL: %r . Call youtube-dl like this: youtube-dl -v "https://www.youtube.com/watch?v=BaW_jenozKc" ' % url,
460 expected=True)
461 else:
462 self._downloader.report_warning(
7571c02c 463 'Falling back to youtube search for %s . Set --default-search "auto" to suppress this warning.' % url)
04b4d394 464 return self.url_result('ytsearch:' + url)
1f7ccb90
PH
465
466 if default_search in ('error', 'fixup_error'):
7571c02c
PH
467 raise ExtractorError(
468 ('%r is not a valid URL. '
eef4a7a3 469 'Set --default-search "ytsearch" (or run youtube-dl "ytsearch:%s" ) to search YouTube'
7571c02c 470 ) % (url, url), expected=True)
04b4d394
PH
471 else:
472 assert ':' in default_search
473 return self.url_result(default_search + url)
4d54ef20
PH
474
475 url, smuggled_data = unsmuggle_url(url)
476 force_videoid = None
477 if smuggled_data and 'force_videoid' in smuggled_data:
478 force_videoid = smuggled_data['force_videoid']
479 video_id = force_videoid
480 else:
481 video_id = os.path.splitext(url.rstrip('/').split('/')[-1])[0]
a7130543 482
79649588 483 self.to_screen('%s: Requesting header' % video_id)
c1d1facd 484
ebab4520
PH
485 head_req = HEADRequest(url)
486 response = self._request_webpage(
487 head_req, video_id,
488 note=False, errnote='Could not send HEAD request to %s' % url,
489 fatal=False)
42393ce2 490
ebab4520 491 if response is not False:
42393ce2
PH
492 # Check for redirect
493 new_url = response.geturl()
494 if url != new_url:
495 self.report_following_redirect(new_url)
4d54ef20
PH
496 if force_videoid:
497 new_url = smuggle_url(
498 new_url, {'force_videoid': force_videoid})
cecaaf3f 499 return self.url_result(new_url)
42393ce2
PH
500
501 # Check for direct link to a video
502 content_type = response.headers.get('Content-Type', '')
3e785145 503 m = re.match(r'^(?P<type>audio|video|application(?=/ogg$))/(?P<format_id>.+)$', content_type)
42393ce2
PH
504 if m:
505 upload_date = response.headers.get('Last-Modified')
506 if upload_date:
507 upload_date = unified_strdate(upload_date)
42393ce2
PH
508 return {
509 'id': video_id,
510 'title': os.path.splitext(url_basename(url))[0],
511 'formats': [{
512 'format_id': m.group('format_id'),
513 'url': url,
79649588 514 'vcodec': 'none' if m.group('type') == 'audio' else None
42393ce2
PH
515 }],
516 'upload_date': upload_date,
517 }
518
9b122384
PH
519 try:
520 webpage = self._download_webpage(url, video_id)
521 except ValueError:
522 # since this is the last-resort InfoExtractor, if
523 # this error is thrown, it'll be thrown here
79649588 524 raise ExtractorError('Failed to download URL: %s' % url)
9b122384
PH
525
526 self.report_extraction(video_id)
887c6acd 527
4fc946b5
PH
528 # Is it an RSS feed?
529 try:
bcf89ce6 530 doc = parse_xml(webpage)
4fc946b5
PH
531 if doc.tag == 'rss':
532 return self._extract_rss(url, video_id, doc)
f7300c5c 533 except compat_xml_parse_error:
4fc946b5
PH
534 pass
535
c8e9a235
PH
536 # Is it a Camtasia project?
537 camtasia_res = self._extract_camtasia(url, video_id, webpage)
538 if camtasia_res is not None:
539 return camtasia_res
540
14390730
S
541 # Sometimes embedded video player is hidden behind percent encoding
542 # (e.g. https://github.com/rg3/youtube-dl/issues/2448)
543 # Unescaping the whole page allows to handle those cases in a generic way
1f7659db
S
544 webpage = compat_urllib_parse.unquote(webpage)
545
887c6acd
PH
546 # it's tempting to parse this further, but you would
547 # have to take into account all the variations like
548 # Video Title - Site Name
549 # Site Name | Video Title
550 # Video Title - Tagline | Site Name
551 # and so on and so forth; it's just not practical
ef4fd848 552 video_title = self._html_search_regex(
79649588
PH
553 r'(?s)<title>(.*?)</title>', webpage, 'video title',
554 default='video')
ef4fd848 555
4d805e06
PH
556 # Try to detect age limit automatically
557 age_limit = self._rta_search(webpage)
558 # And then there are the jokers who advertise that they use RTA,
559 # but actually don't.
560 AGE_LIMIT_MARKERS = [
561 r'Proudly Labeled <a href="http://www.rtalabel.org/" title="Restricted to Adults">RTA</a>',
562 ]
563 if any(re.search(marker, webpage) for marker in AGE_LIMIT_MARKERS):
564 age_limit = 18
565
ef4fd848
PH
566 # video uploader is domain name
567 video_uploader = self._search_regex(
79649588 568 r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
887c6acd 569
ed2d6a19
PH
570 # Helper method
571 def _playlist_from_matches(matches, getter, ie=None):
572 urlrs = orderedSet(self.url_result(getter(m), ie) for m in matches)
573 return self.playlist_result(
574 urlrs, playlist_id=video_id, playlist_title=video_title)
575
627a91a9 576 # Look for BrightCove:
99877772
PH
577 bc_urls = BrightcoveIE._extract_brightcove_urls(webpage)
578 if bc_urls:
79649588 579 self.to_screen('Brightcove video detected.')
99877772
PH
580 entries = [{
581 '_type': 'url',
582 'url': smuggle_url(bc_url, {'Referer': url}),
583 'ie_key': 'Brightcove'
584 } for bc_url in bc_urls]
585
586 return {
587 '_type': 'playlist',
588 'title': video_title,
589 'id': video_id,
590 'entries': entries,
591 }
cfe50f04 592
7115ca84 593 # Look for embedded (iframe) Vimeo player
9d4660ca 594 mobj = re.search(
15fd51b3 595 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//player\.vimeo\.com/video/.+?)\1', webpage)
9d4660ca 596 if mobj:
15fd51b3 597 player_url = unescapeHTML(mobj.group('url'))
9d4660ca
PH
598 surl = smuggle_url(player_url, {'Referer': url})
599 return self.url_result(surl, 'Vimeo')
600
7115ca84
PH
601 # Look for embedded (swf embed) Vimeo player
602 mobj = re.search(
c3f51436 603 r'<embed[^>]+?src="(https?://(?:www\.)?vimeo\.com/moogaloop\.swf.+?)"', webpage)
7115ca84
PH
604 if mobj:
605 return self.url_result(mobj.group(1), 'Vimeo')
606
53c1d3ef 607 # Look for embedded YouTube player
1f9da904 608 matches = re.findall(r'''(?x)
2b88feed
PH
609 (?:
610 <iframe[^>]+?src=|
c71dfccc 611 data-video-url=|
2b88feed
PH
612 <embed[^>]+?src=|
613 embedSWF\(?:\s*
614 )
615 (["\'])
616 (?P<url>(?:https?:)?//(?:www\.)?youtube\.com/
1f9da904
PH
617 (?:embed|v)/.+?)
618 \1''', webpage)
887c6acd 619 if matches:
ed2d6a19
PH
620 return _playlist_from_matches(
621 matches, lambda m: unescapeHTML(m[1]), ie='Youtube')
53c1d3ef 622
355e4fd0
PH
623 # Look for embedded Dailymotion player
624 matches = re.findall(
ef4fd848 625 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/embed/video/.+?)\1', webpage)
355e4fd0 626 if matches:
ed2d6a19
PH
627 return _playlist_from_matches(
628 matches, lambda m: unescapeHTML(m[1]))
355e4fd0 629
ef4fd848
PH
630 # Look for embedded Wistia player
631 match = re.search(
632 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
633 if match:
634 return {
635 '_type': 'url_transparent',
636 'url': unescapeHTML(match.group('url')),
637 'ie_key': 'Wistia',
638 'uploader': video_uploader,
639 'title': video_title,
640 'id': video_id,
641 }
642
ee3e63e4 643 # Look for embedded blip.tv player
19dab5e6 644 mobj = re.search(r'<meta\s[^>]*https?://api\.blip\.tv/\w+/redirect/\w+/(\d+)', webpage)
ee3e63e4 645 if mobj:
19dab5e6 646 return self.url_result('http://blip.tv/a/a-'+mobj.group(1), 'BlipTV')
1f8b6af7 647 mobj = re.search(r'<(?:iframe|embed|object)\s[^>]*(https?://(?:\w+\.)?blip\.tv/(?:play/|api\.swf#)[a-zA-Z0-9_]+)', webpage)
ee3e63e4 648 if mobj:
19dab5e6 649 return self.url_result(mobj.group(1), 'BlipTV')
ee3e63e4 650
fa35cdad
PH
651 # Look for embedded condenast player
652 matches = re.findall(
653 r'<iframe\s+(?:[a-zA-Z-]+="[^"]+"\s+)*?src="(https?://player\.cnevids\.com/embed/[^"]+")',
654 webpage)
655 if matches:
656 return {
657 '_type': 'playlist',
658 'entries': [{
659 '_type': 'url',
660 'ie_key': 'CondeNast',
661 'url': ma,
662 } for ma in matches],
663 'title': video_title,
664 'id': video_id,
665 }
666
c19f7764
JMF
667 # Look for Bandcamp pages with custom domain
668 mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
669 if mobj is not None:
670 burl = unescapeHTML(mobj.group(1))
09804265
JMF
671 # Don't set the extractor because it can be a track url or an album
672 return self.url_result(burl)
c19f7764 673
f25571ff
PH
674 # Look for embedded Vevo player
675 mobj = re.search(
676 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
677 if mobj is not None:
678 return self.url_result(mobj.group('url'))
679
c0d0b01f 680 # Look for Ooyala videos
750f9020
JMF
681 mobj = (re.search(r'player.ooyala.com/[^"?]+\?[^"]*?(?:embedCode|ec)=(?P<ec>[^"&]+)', webpage) or
682 re.search(r'OO.Player.create\([\'"].*?[\'"],\s*[\'"](?P<ec>.{32})[\'"]', webpage))
c0d0b01f 683 if mobj is not None:
750f9020 684 return OoyalaIE._build_url_result(mobj.group('ec'))
c0d0b01f 685
aa94a6d3 686 # Look for Aparat videos
48099643 687 mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
aa94a6d3
PH
688 if mobj is not None:
689 return self.url_result(mobj.group(1), 'Aparat')
690
c93c2ab1 691 # Look for MPORA videos
c3f51436 692 mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
c93c2ab1
PH
693 if mobj is not None:
694 return self.url_result(mobj.group(1), 'Mpora')
5f59ee79 695
15c0e8e7 696 # Look for embedded NovaMov-based player
8f89e687 697 mobj = re.search(
8dfa187b 698 r'''(?x)<(?:pagespeed_)?iframe[^>]+?src=(["\'])
15c0e8e7
S
699 (?P<url>http://(?:(?:embed|www)\.)?
700 (?:novamov\.com|
701 nowvideo\.(?:ch|sx|eu|at|ag|co)|
702 videoweed\.(?:es|com)|
703 movshare\.(?:net|sx|ag)|
704 divxstage\.(?:eu|net|ch|co|at|ag))
705 /embed\.php.+?)\1''', webpage)
8f89e687 706 if mobj is not None:
15c0e8e7 707 return self.url_result(mobj.group('url'))
50f56607 708
9834872b
PH
709 # Look for embedded Facebook player
710 mobj = re.search(
db1f3888 711 r'<iframe[^>]+?src=(["\'])(?P<url>https://www\.facebook\.com/video/embed.+?)\1', webpage)
9834872b
PH
712 if mobj is not None:
713 return self.url_result(mobj.group('url'), 'Facebook')
714
ca97a56e
S
715 # Look for embedded VK player
716 mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
717 if mobj is not None:
718 return self.url_result(mobj.group('url'), 'VK')
719
0364fa8b
S
720 # Look for embedded ivi player
721 mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage)
722 if mobj is not None:
723 return self.url_result(mobj.group('url'), 'Ivi')
724
db1f3888
PH
725 # Look for embedded Huffington Post player
726 mobj = re.search(
c3f51436 727 r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
db1f3888
PH
728 if mobj is not None:
729 return self.url_result(mobj.group('url'), 'HuffPost')
730
1b86cc41 731 # Look for embed.ly
732 mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
733 if mobj is not None:
734 return self.url_result(mobj.group('url'))
735 mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
736 if mobj is not None:
737 return self.url_result(compat_urllib_parse.unquote(mobj.group('url')))
738
60cc4dc4
PH
739 # Look for funnyordie embed
740 matches = re.findall(r'<iframe[^>]+?src="(https?://(?:www\.)?funnyordie\.com/embed/[^"]+)"', webpage)
741 if matches:
ed2d6a19
PH
742 return _playlist_from_matches(
743 matches, getter=unescapeHTML, ie='FunnyOrDie')
60cc4dc4 744
93d020dd
S
745 # Look for embedded RUTV player
746 rutv_url = RUTVIE._extract_url(webpage)
747 if rutv_url:
748 return self.url_result(rutv_url, 'RUTV')
749
7e2ede98
JMF
750 # Look for embedded TED player
751 mobj = re.search(
752 r'<iframe[^>]+?src=(["\'])(?P<url>http://embed\.ted\.com/.+?)\1', webpage)
753 if mobj is not None:
754 return self.url_result(mobj.group('url'), 'TED')
755
5c386252 756 # Look for embedded Ustream videos
757 mobj = re.search(
758 r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage)
759 if mobj is not None:
760 return self.url_result(mobj.group('url'), 'Ustream')
761
893f8832
PH
762 # Look for embedded arte.tv player
763 mobj = re.search(
764 r'<script [^>]*?src="(?P<url>http://www\.arte\.tv/playerv2/embed[^"]+)"',
765 webpage)
766 if mobj is not None:
767 return self.url_result(mobj.group('url'), 'ArteTVEmbed')
768
cb3ac1c6
S
769 # Look for embedded smotri.com player
770 smotri_url = SmotriIE._extract_url(webpage)
771 if smotri_url:
772 return self.url_result(smotri_url, 'Smotri')
773
20991253
PH
774 # Look for embeded soundcloud player
775 mobj = re.search(
776 r'<iframe src="(?P<url>https?://(?:w\.)?soundcloud\.com/player[^"]+)"',
777 webpage)
778 if mobj is not None:
779 url = unescapeHTML(mobj.group('url'))
780 return self.url_result(url)
781
826ec77f
PH
782 # Look for embedded vulture.com player
783 mobj = re.search(
784 r'<iframe src="(?P<url>https?://video\.vulture\.com/[^"]+)"',
785 webpage)
786 if mobj is not None:
787 url = unescapeHTML(mobj.group('url'))
788 return self.url_result(url, ie='Vulture')
789
c5cd249e
JMF
790 # Look for embedded mtvservices player
791 mobj = re.search(
792 r'<iframe src="(?P<url>https?://media\.mtvnservices\.com/embed/[^"]+)"',
793 webpage)
794 if mobj is not None:
795 url = unescapeHTML(mobj.group('url'))
796 return self.url_result(url, ie='MTVServicesEmbedded')
797
49807b4a
S
798 # Look for embedded yahoo player
799 mobj = re.search(
800 r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1',
801 webpage)
802 if mobj is not None:
803 return self.url_result(mobj.group('url'), 'Yahoo')
804
2ef6fcb5
PH
805 # Look for embedded sbs.com.au player
806 mobj = re.search(
807 r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:www\.)sbs\.com\.au/ondemand/video/single/.+?)\1',
808 webpage)
809 if mobj is not None:
810 return self.url_result(mobj.group('url'), 'SBS')
811
9b122384 812 # Start with something easy: JW Player in SWFObject
b30b8698
PH
813 found = re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage)
814 if not found:
d981cef6 815 # Look for gorilla-vid style embedding
b30b8698 816 found = re.findall(r'''(?sx)
c0292e8a
PH
817 (?:
818 jw_plugins|
819 JWPlayerOptions|
820 jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
821 )
822 .*?file\s*:\s*["\'](.*?)["\']''', webpage)
b30b8698 823 if not found:
9b122384 824 # Broaden the search a little bit
b30b8698
PH
825 found = re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage)
826 if not found:
827 # Broaden the findall a little bit: JWPlayer JS loader
828 found = re.findall(r'[^A-Za-z0-9]?file["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage)
4d805e06
PH
829 if not found:
830 # Flow player
831 found = re.findall(r'''(?xs)
832 flowplayer\("[^"]+",\s*
833 \{[^}]+?\}\s*,
834 \s*{[^}]+? ["']?clip["']?\s*:\s*\{\s*
835 ["']?url["']?\s*:\s*["']([^"']+)["']
836 ''', webpage)
b30b8698 837 if not found:
9b122384 838 # Try to find twitter cards info
b30b8698
PH
839 found = re.findall(r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage)
840 if not found:
9b122384
PH
841 # We look for Open Graph info:
842 # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
b30b8698 843 m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
9b122384
PH
844 # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
845 if m_video_type is not None:
fa8deaf3
PH
846 def check_video(vurl):
847 vpath = compat_urlparse.urlparse(vurl).path
1cb6dcdb
PH
848 vext = determine_ext(vpath)
849 return '.' in vpath and vext not in ('swf', 'png', 'jpg')
fa8deaf3
PH
850 found = list(filter(
851 check_video,
852 re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage)))
b30b8698 853 if not found:
7fea7156 854 # HTML5 video
aff216ed 855 found = re.findall(r'(?s)<video[^<]*(?:>.*?<source[^>]+)? src="([^"]+)"', webpage)
b30b8698 856 if not found:
a5a45015 857 found = re.search(
89ef304b
PH
858 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
859 r'(?:[a-z-]+="[^"]+"\s+)*?content="[0-9]{,2};url=\'([^\']+)\'"',
860 webpage)
b30b8698
PH
861 if found:
862 new_url = found.group(1)
89ef304b
PH
863 self.report_following_redirect(new_url)
864 return {
865 '_type': 'url',
866 'url': new_url,
867 }
b30b8698 868 if not found:
79649588 869 raise ExtractorError('Unsupported URL: %s' % url)
9b122384 870
b30b8698
PH
871 entries = []
872 for video_url in found:
873 video_url = compat_urlparse.urljoin(url, video_url)
874 video_id = compat_urllib_parse.unquote(os.path.basename(video_url))
9b122384 875
b30b8698
PH
876 # Sometimes, jwplayer extraction will result in a YouTube URL
877 if YoutubeIE.suitable(video_url):
878 entries.append(self.url_result(video_url, 'Youtube'))
879 continue
9b122384 880
b30b8698
PH
881 # here's a fun little line of code for you:
882 video_id = os.path.splitext(video_id)[0]
fc9713a1 883
b30b8698
PH
884 entries.append({
885 'id': video_id,
886 'url': video_url,
887 'uploader': video_uploader,
888 'title': video_title,
4d805e06 889 'age_limit': age_limit,
b30b8698
PH
890 })
891
892 if len(entries) == 1:
669f0e7c 893 return entries[0]
b30b8698
PH
894 else:
895 for num, e in enumerate(entries, start=1):
896 e['title'] = '%s (%d)' % (e['title'], num)
897 return {
898 '_type': 'playlist',
899 'entries': entries,
900 }
9b122384 901