[extractor/generic] Add proper default to _search_json_ld call
[youtube-dl] / youtube_dl / extractor / generic.py
1 # encoding: utf-8
2
3 from __future__ import unicode_literals
4
5 import os
6 import re
7 import sys
8
9 from .common import InfoExtractor
10 from .youtube import YoutubeIE
11 from ..compat import (
12     compat_etree_fromstring,
13     compat_urllib_parse_unquote,
14     compat_urlparse,
15     compat_xml_parse_error,
16 )
17 from ..utils import (
18     determine_ext,
19     ExtractorError,
20     float_or_none,
21     HEADRequest,
22     is_html,
23     orderedSet,
24     sanitized_Request,
25     smuggle_url,
26     unescapeHTML,
27     unified_strdate,
28     unsmuggle_url,
29     UnsupportedError,
30     url_basename,
31     xpath_text,
32 )
33 from .brightcove import (
34     BrightcoveLegacyIE,
35     BrightcoveNewIE,
36 )
37 from .nbc import NBCSportsVPlayerIE
38 from .ooyala import OoyalaIE
39 from .rutv import RUTVIE
40 from .tvc import TVCIE
41 from .sportbox import SportBoxEmbedIE
42 from .smotri import SmotriIE
43 from .myvi import MyviIE
44 from .condenast import CondeNastIE
45 from .udn import UDNEmbedIE
46 from .senateisvp import SenateISVPIE
47 from .svt import SVTIE
48 from .pornhub import PornHubIE
49 from .xhamster import XHamsterEmbedIE
50 from .tnaflix import TNAFlixNetworkEmbedIE
51 from .vimeo import VimeoIE
52 from .dailymotion import (
53     DailymotionIE,
54     DailymotionCloudIE,
55 )
56 from .onionstudios import OnionStudiosIE
57 from .viewlift import ViewLiftEmbedIE
58 from .screenwavemedia import ScreenwaveMediaIE
59 from .mtv import MTVServicesEmbeddedIE
60 from .pladform import PladformIE
61 from .videomore import VideomoreIE
62 from .googledrive import GoogleDriveIE
63 from .jwplatform import JWPlatformIE
64 from .digiteka import DigitekaIE
65 from .arkena import ArkenaIE
66 from .instagram import InstagramIE
67 from .liveleak import LiveLeakIE
68 from .threeqsdn import ThreeQSDNIE
69 from .theplatform import ThePlatformIE
70 from .vessel import VesselIE
71 from .kaltura import KalturaIE
72 from .eagleplatform import EaglePlatformIE
73 from .facebook import FacebookIE
74 from .soundcloud import SoundcloudIE
75
76
77 class GenericIE(InfoExtractor):
78     IE_DESC = 'Generic downloader that works on some sites'
79     _VALID_URL = r'.*'
80     IE_NAME = 'generic'
81     _TESTS = [
82         # Direct link to a video
83         {
84             'url': 'http://media.w3.org/2010/05/sintel/trailer.mp4',
85             'md5': '67d406c2bcb6af27fa886f31aa934bbe',
86             'info_dict': {
87                 'id': 'trailer',
88                 'ext': 'mp4',
89                 'title': 'trailer',
90                 'upload_date': '20100513',
91             }
92         },
93         # Direct link to media delivered compressed (until Accept-Encoding is *)
94         {
95             'url': 'http://calimero.tk/muzik/FictionJunction-Parallel_Hearts.flac',
96             'md5': '128c42e68b13950268b648275386fc74',
97             'info_dict': {
98                 'id': 'FictionJunction-Parallel_Hearts',
99                 'ext': 'flac',
100                 'title': 'FictionJunction-Parallel_Hearts',
101                 'upload_date': '20140522',
102             },
103             'expected_warnings': [
104                 'URL could be a direct video link, returning it as such.'
105             ]
106         },
107         # Direct download with broken HEAD
108         {
109             'url': 'http://ai-radio.org:8000/radio.opus',
110             'info_dict': {
111                 'id': 'radio',
112                 'ext': 'opus',
113                 'title': 'radio',
114             },
115             'params': {
116                 'skip_download': True,  # infinite live stream
117             },
118             'expected_warnings': [
119                 r'501.*Not Implemented',
120                 r'400.*Bad Request',
121             ],
122         },
123         # Direct link with incorrect MIME type
124         {
125             'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
126             'md5': '4ccbebe5f36706d85221f204d7eb5913',
127             'info_dict': {
128                 'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
129                 'id': '5_Lennart_Poettering_-_Systemd',
130                 'ext': 'webm',
131                 'title': '5_Lennart_Poettering_-_Systemd',
132                 'upload_date': '20141120',
133             },
134             'expected_warnings': [
135                 'URL could be a direct video link, returning it as such.'
136             ]
137         },
138         # RSS feed
139         {
140             'url': 'http://phihag.de/2014/youtube-dl/rss2.xml',
141             'info_dict': {
142                 'id': 'http://phihag.de/2014/youtube-dl/rss2.xml',
143                 'title': 'Zero Punctuation',
144                 'description': 're:.*groundbreaking video review series.*'
145             },
146             'playlist_mincount': 11,
147         },
148         # RSS feed with enclosure
149         {
150             'url': 'http://podcastfeeds.nbcnews.com/audio/podcast/MSNBC-MADDOW-NETCAST-M4V.xml',
151             'info_dict': {
152                 'id': 'pdv_maddow_netcast_m4v-02-27-2015-201624',
153                 'ext': 'm4v',
154                 'upload_date': '20150228',
155                 'title': 'pdv_maddow_netcast_m4v-02-27-2015-201624',
156             }
157         },
158         # SMIL from http://videolectures.net/promogram_igor_mekjavic_eng
159         {
160             'url': 'http://videolectures.net/promogram_igor_mekjavic_eng/video/1/smil.xml',
161             'info_dict': {
162                 'id': 'smil',
163                 'ext': 'mp4',
164                 'title': 'Automatics, robotics and biocybernetics',
165                 'description': 'md5:815fc1deb6b3a2bff99de2d5325be482',
166                 'upload_date': '20130627',
167                 'formats': 'mincount:16',
168                 'subtitles': 'mincount:1',
169             },
170             'params': {
171                 'force_generic_extractor': True,
172                 'skip_download': True,
173             },
174         },
175         # SMIL from http://www1.wdr.de/mediathek/video/livestream/index.html
176         {
177             'url': 'http://metafilegenerator.de/WDR/WDR_FS/hds/hds.smil',
178             'info_dict': {
179                 'id': 'hds',
180                 'ext': 'flv',
181                 'title': 'hds',
182                 'formats': 'mincount:1',
183             },
184             'params': {
185                 'skip_download': True,
186             },
187         },
188         # SMIL from https://www.restudy.dk/video/play/id/1637
189         {
190             'url': 'https://www.restudy.dk/awsmedia/SmilDirectory/video_1637.xml',
191             'info_dict': {
192                 'id': 'video_1637',
193                 'ext': 'flv',
194                 'title': 'video_1637',
195                 'formats': 'mincount:3',
196             },
197             'params': {
198                 'skip_download': True,
199             },
200         },
201         # SMIL from http://adventure.howstuffworks.com/5266-cool-jobs-iditarod-musher-video.htm
202         {
203             'url': 'http://services.media.howstuffworks.com/videos/450221/smil-service.smil',
204             'info_dict': {
205                 'id': 'smil-service',
206                 'ext': 'flv',
207                 'title': 'smil-service',
208                 'formats': 'mincount:1',
209             },
210             'params': {
211                 'skip_download': True,
212             },
213         },
214         # SMIL from http://new.livestream.com/CoheedandCambria/WebsterHall/videos/4719370
215         {
216             'url': 'http://api.new.livestream.com/accounts/1570303/events/1585861/videos/4719370.smil',
217             'info_dict': {
218                 'id': '4719370',
219                 'ext': 'mp4',
220                 'title': '571de1fd-47bc-48db-abf9-238872a58d1f',
221                 'formats': 'mincount:3',
222             },
223             'params': {
224                 'skip_download': True,
225             },
226         },
227         # XSPF playlist from http://www.telegraaf.nl/tv/nieuws/binnenland/24353229/__Tikibad_ontruimd_wegens_brand__.html
228         {
229             'url': 'http://www.telegraaf.nl/xml/playlist/2015/8/7/mZlp2ctYIUEB.xspf',
230             'info_dict': {
231                 'id': 'mZlp2ctYIUEB',
232                 'ext': 'mp4',
233                 'title': 'Tikibad ontruimd wegens brand',
234                 'description': 'md5:05ca046ff47b931f9b04855015e163a4',
235                 'thumbnail': 're:^https?://.*\.jpg$',
236                 'duration': 33,
237             },
238             'params': {
239                 'skip_download': True,
240             },
241         },
242         # MPD from http://dash-mse-test.appspot.com/media.html
243         {
244             'url': 'http://yt-dash-mse-test.commondatastorage.googleapis.com/media/car-20120827-manifest.mpd',
245             'md5': '4b57baab2e30d6eb3a6a09f0ba57ef53',
246             'info_dict': {
247                 'id': 'car-20120827-manifest',
248                 'ext': 'mp4',
249                 'title': 'car-20120827-manifest',
250                 'formats': 'mincount:9',
251                 'upload_date': '20130904',
252             },
253             'params': {
254                 'format': 'bestvideo',
255             },
256         },
257         # m3u8 served with Content-Type: audio/x-mpegURL; charset=utf-8
258         {
259             'url': 'http://once.unicornmedia.com/now/master/playlist/bb0b18ba-64f5-4b1b-a29f-0ac252f06b68/77a785f3-5188-4806-b788-0893a61634ed/93677179-2d99-4ef4-9e17-fe70d49abfbf/content.m3u8',
260             'info_dict': {
261                 'id': 'content',
262                 'ext': 'mp4',
263                 'title': 'content',
264                 'formats': 'mincount:8',
265             },
266             'params': {
267                 # m3u8 downloads
268                 'skip_download': True,
269             }
270         },
271         # m3u8 served with Content-Type: text/plain
272         {
273             'url': 'http://www.nacentapps.com/m3u8/index.m3u8',
274             'info_dict': {
275                 'id': 'index',
276                 'ext': 'mp4',
277                 'title': 'index',
278                 'upload_date': '20140720',
279                 'formats': 'mincount:11',
280             },
281             'params': {
282                 # m3u8 downloads
283                 'skip_download': True,
284             }
285         },
286         # google redirect
287         {
288             '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',
289             'info_dict': {
290                 'id': 'cmQHVoWB5FY',
291                 'ext': 'mp4',
292                 'upload_date': '20130224',
293                 'uploader_id': 'TheVerge',
294                 'description': 're:^Chris Ziegler takes a look at the\.*',
295                 'uploader': 'The Verge',
296                 'title': 'First Firefox OS phones side-by-side',
297             },
298             'params': {
299                 'skip_download': False,
300             }
301         },
302         {
303             # redirect in Refresh HTTP header
304             'url': 'https://www.facebook.com/l.php?u=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DpO8h3EaFRdo&h=TAQHsoToz&enc=AZN16h-b6o4Zq9pZkCCdOLNKMN96BbGMNtcFwHSaazus4JHT_MFYkAA-WARTX2kvsCIdlAIyHZjl6d33ILIJU7Jzwk_K3mcenAXoAzBNoZDI_Q7EXGDJnIhrGkLXo_LJ_pAa2Jzbx17UHMd3jAs--6j2zaeto5w9RTn8T_1kKg3fdC5WPX9Dbb18vzH7YFX0eSJmoa6SP114rvlkw6pkS1-T&s=1',
305             'info_dict': {
306                 'id': 'pO8h3EaFRdo',
307                 'ext': 'mp4',
308                 'title': 'Tripeo Boiler Room x Dekmantel Festival DJ Set',
309                 'description': 'md5:6294cc1af09c4049e0652b51a2df10d5',
310                 'upload_date': '20150917',
311                 'uploader_id': 'brtvofficial',
312                 'uploader': 'Boiler Room',
313             },
314             'params': {
315                 'skip_download': False,
316             },
317         },
318         {
319             'url': 'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html',
320             'md5': '85b90ccc9d73b4acd9138d3af4c27f89',
321             'info_dict': {
322                 'id': '13601338388002',
323                 'ext': 'mp4',
324                 'uploader': 'www.hodiho.fr',
325                 'title': 'R\u00e9gis plante sa Jeep',
326             }
327         },
328         # bandcamp page with custom domain
329         {
330             'add_ie': ['Bandcamp'],
331             'url': 'http://bronyrock.com/track/the-pony-mash',
332             'info_dict': {
333                 'id': '3235767654',
334                 'ext': 'mp3',
335                 'title': 'The Pony Mash',
336                 'uploader': 'M_Pallante',
337             },
338             'skip': 'There is a limit of 200 free downloads / month for the test song',
339         },
340         # embedded brightcove video
341         # it also tests brightcove videos that need to set the 'Referer' in the
342         # http requests
343         {
344             'add_ie': ['BrightcoveLegacy'],
345             'url': 'http://www.bfmtv.com/video/bfmbusiness/cours-bourse/cours-bourse-l-analyse-technique-154522/',
346             'info_dict': {
347                 'id': '2765128793001',
348                 'ext': 'mp4',
349                 'title': 'Le cours de bourse : l’analyse technique',
350                 'description': 'md5:7e9ad046e968cb2d1114004aba466fd9',
351                 'uploader': 'BFM BUSINESS',
352             },
353             'params': {
354                 'skip_download': True,
355             },
356         },
357         {
358             # https://github.com/rg3/youtube-dl/issues/2253
359             'url': 'http://bcove.me/i6nfkrc3',
360             'md5': '0ba9446db037002366bab3b3eb30c88c',
361             'info_dict': {
362                 'id': '3101154703001',
363                 'ext': 'mp4',
364                 'title': 'Still no power',
365                 'uploader': 'thestar.com',
366                 '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.',
367             },
368             'add_ie': ['BrightcoveLegacy'],
369         },
370         {
371             'url': 'http://www.championat.com/video/football/v/87/87499.html',
372             'md5': 'fb973ecf6e4a78a67453647444222983',
373             'info_dict': {
374                 'id': '3414141473001',
375                 'ext': 'mp4',
376                 'title': 'Видео. Удаление Дзагоева (ЦСКА)',
377                 'description': 'Онлайн-трансляция матча ЦСКА - "Волга"',
378                 'uploader': 'Championat',
379             },
380         },
381         {
382             # https://github.com/rg3/youtube-dl/issues/3541
383             'add_ie': ['BrightcoveLegacy'],
384             'url': 'http://www.kijk.nl/sbs6/leermijvrouwenkennen/videos/jqMiXKAYan2S/aflevering-1',
385             'info_dict': {
386                 'id': '3866516442001',
387                 'ext': 'mp4',
388                 'title': 'Leer mij vrouwen kennen: Aflevering 1',
389                 'description': 'Leer mij vrouwen kennen: Aflevering 1',
390                 'uploader': 'SBS Broadcasting',
391             },
392             'skip': 'Restricted to Netherlands',
393             'params': {
394                 'skip_download': True,  # m3u8 download
395             },
396         },
397         # ooyala video
398         {
399             'url': 'http://www.rollingstone.com/music/videos/norwegian-dj-cashmere-cat-goes-spartan-on-with-me-premiere-20131219',
400             'md5': '166dd577b433b4d4ebfee10b0824d8ff',
401             'info_dict': {
402                 'id': 'BwY2RxaTrTkslxOfcan0UCf0YqyvWysJ',
403                 'ext': 'mp4',
404                 'title': '2cc213299525360.mov',  # that's what we get
405                 'duration': 238.231,
406             },
407             'add_ie': ['Ooyala'],
408         },
409         {
410             # ooyala video embedded with http://player.ooyala.com/iframe.js
411             'url': 'http://www.macrumors.com/2015/07/24/steve-jobs-the-man-in-the-machine-first-trailer/',
412             'info_dict': {
413                 'id': 'p0MGJndjoG5SOKqO_hZJuZFPB-Tr5VgB',
414                 'ext': 'mp4',
415                 'title': '"Steve Jobs: Man in the Machine" trailer',
416                 'description': 'The first trailer for the Alex Gibney documentary "Steve Jobs: Man in the Machine."',
417                 'duration': 135.427,
418             },
419             'params': {
420                 'skip_download': True,
421             },
422         },
423         # embed.ly video
424         {
425             'url': 'http://www.tested.com/science/weird/460206-tested-grinding-coffee-2000-frames-second/',
426             'info_dict': {
427                 'id': '9ODmcdjQcHQ',
428                 'ext': 'mp4',
429                 'title': 'Tested: Grinding Coffee at 2000 Frames Per Second',
430                 'upload_date': '20140225',
431                 'description': 'md5:06a40fbf30b220468f1e0957c0f558ff',
432                 'uploader': 'Tested',
433                 'uploader_id': 'testedcom',
434             },
435             # No need to test YoutubeIE here
436             'params': {
437                 'skip_download': True,
438             },
439         },
440         # funnyordie embed
441         {
442             'url': 'http://www.theguardian.com/world/2014/mar/11/obama-zach-galifianakis-between-two-ferns',
443             'info_dict': {
444                 'id': '18e820ec3f',
445                 'ext': 'mp4',
446                 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama',
447                 'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',
448             },
449         },
450         # RUTV embed
451         {
452             'url': 'http://www.rg.ru/2014/03/15/reg-dfo/anklav-anons.html',
453             'info_dict': {
454                 'id': '776940',
455                 'ext': 'mp4',
456                 'title': 'Охотское море стало целиком российским',
457                 'description': 'md5:5ed62483b14663e2a95ebbe115eb8f43',
458             },
459             'params': {
460                 # m3u8 download
461                 'skip_download': True,
462             },
463         },
464         # TVC embed
465         {
466             'url': 'http://sch1298sz.mskobr.ru/dou_edu/karamel_ki/filial_galleries/video/iframe_src_http_tvc_ru_video_iframe_id_55304_isplay_false_acc_video_id_channel_brand_id_11_show_episodes_episode_id_32307_frameb/',
467             'info_dict': {
468                 'id': '55304',
469                 'ext': 'mp4',
470                 'title': 'Дошкольное воспитание',
471             },
472         },
473         # SportBox embed
474         {
475             'url': 'http://www.vestifinance.ru/articles/25753',
476             'info_dict': {
477                 'id': '25753',
478                 'title': 'Прямые трансляции с Форума-выставки "Госзаказ-2013"',
479             },
480             'playlist': [{
481                 'info_dict': {
482                     'id': '370908',
483                     'title': 'Госзаказ. День 3',
484                     'ext': 'mp4',
485                 }
486             }, {
487                 'info_dict': {
488                     'id': '370905',
489                     'title': 'Госзаказ. День 2',
490                     'ext': 'mp4',
491                 }
492             }, {
493                 'info_dict': {
494                     'id': '370902',
495                     'title': 'Госзаказ. День 1',
496                     'ext': 'mp4',
497                 }
498             }],
499             'params': {
500                 # m3u8 download
501                 'skip_download': True,
502             },
503         },
504         # Myvi.ru embed
505         {
506             'url': 'http://www.kinomyvi.tv/news/detail/Pervij-dublirovannij-trejler--Uzhastikov-_nOw1',
507             'info_dict': {
508                 'id': 'f4dafcad-ff21-423d-89b5-146cfd89fa1e',
509                 'ext': 'mp4',
510                 'title': 'Ужастики, русский трейлер (2015)',
511                 'thumbnail': 're:^https?://.*\.jpg$',
512                 'duration': 153,
513             }
514         },
515         # XHamster embed
516         {
517             'url': 'http://www.numisc.com/forum/showthread.php?11696-FM15-which-pumiscer-was-this-%28-vid-%29-%28-alfa-as-fuck-srx-%29&s=711f5db534502e22260dec8c5e2d66d8',
518             'info_dict': {
519                 'id': 'showthread',
520                 'title': '[NSFL] [FM15] which pumiscer was this ( vid ) ( alfa as fuck srx )',
521             },
522             'playlist_mincount': 7,
523         },
524         # Embedded TED video
525         {
526             'url': 'http://en.support.wordpress.com/videos/ted-talks/',
527             'md5': '65fdff94098e4a607385a60c5177c638',
528             'info_dict': {
529                 'id': '1969',
530                 'ext': 'mp4',
531                 'title': 'Hidden miracles of the natural world',
532                 'uploader': 'Louie Schwartzberg',
533                 'description': 'md5:8145d19d320ff3e52f28401f4c4283b9',
534             }
535         },
536         # Embedded Ustream video
537         {
538             'url': 'http://www.american.edu/spa/pti/nsa-privacy-janus-2014.cfm',
539             'md5': '27b99cdb639c9b12a79bca876a073417',
540             'info_dict': {
541                 'id': '45734260',
542                 'ext': 'flv',
543                 'uploader': 'AU SPA:  The NSA and Privacy',
544                 'title': 'NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman'
545             }
546         },
547         # nowvideo embed hidden behind percent encoding
548         {
549             'url': 'http://www.waoanime.tv/the-super-dimension-fortress-macross-episode-1/',
550             'md5': '2baf4ddd70f697d94b1c18cf796d5107',
551             'info_dict': {
552                 'id': '06e53103ca9aa',
553                 'ext': 'flv',
554                 'title': 'Macross Episode 001  Watch Macross Episode 001 onl',
555                 'description': 'No description',
556             },
557         },
558         # arte embed
559         {
560             'url': 'http://www.tv-replay.fr/redirection/20-03-14/x-enius-arte-10753389.html',
561             'md5': '7653032cbb25bf6c80d80f217055fa43',
562             'info_dict': {
563                 'id': '048195-004_PLUS7-F',
564                 'ext': 'flv',
565                 'title': 'X:enius',
566                 'description': 'md5:d5fdf32ef6613cdbfd516ae658abf168',
567                 'upload_date': '20140320',
568             },
569             'params': {
570                 'skip_download': 'Requires rtmpdump'
571             }
572         },
573         # francetv embed
574         {
575             'url': 'http://www.tsprod.com/replay-du-concert-alcaline-de-calogero',
576             'info_dict': {
577                 'id': 'EV_30231',
578                 'ext': 'mp4',
579                 'title': 'Alcaline, le concert avec Calogero',
580                 'description': 'md5:61f08036dcc8f47e9cfc33aed08ffaff',
581                 'upload_date': '20150226',
582                 'timestamp': 1424989860,
583                 'duration': 5400,
584             },
585             'params': {
586                 # m3u8 downloads
587                 'skip_download': True,
588             },
589             'expected_warnings': [
590                 'Forbidden'
591             ]
592         },
593         # Condé Nast embed
594         {
595             'url': 'http://www.wired.com/2014/04/honda-asimo/',
596             'md5': 'ba0dfe966fa007657bd1443ee672db0f',
597             'info_dict': {
598                 'id': '53501be369702d3275860000',
599                 'ext': 'mp4',
600                 'title': 'Honda’s  New Asimo Robot Is More Human Than Ever',
601             }
602         },
603         # Dailymotion embed
604         {
605             'url': 'http://www.spi0n.com/zap-spi0n-com-n216/',
606             'md5': '441aeeb82eb72c422c7f14ec533999cd',
607             'info_dict': {
608                 'id': 'k2mm4bCdJ6CQ2i7c8o2',
609                 'ext': 'mp4',
610                 'title': 'Le Zap de Spi0n n°216 - Zapping du Web',
611                 'description': 'md5:faf028e48a461b8b7fad38f1e104b119',
612                 'uploader': 'Spi0n',
613                 'uploader_id': 'xgditw',
614                 'upload_date': '20140425',
615                 'timestamp': 1398441542,
616             },
617             'add_ie': ['Dailymotion'],
618         },
619         # YouTube embed
620         {
621             'url': 'http://www.badzine.de/ansicht/datum/2014/06/09/so-funktioniert-die-neue-englische-badminton-liga.html',
622             'info_dict': {
623                 'id': 'FXRb4ykk4S0',
624                 'ext': 'mp4',
625                 'title': 'The NBL Auction 2014',
626                 'uploader': 'BADMINTON England',
627                 'uploader_id': 'BADMINTONEvents',
628                 'upload_date': '20140603',
629                 'description': 'md5:9ef128a69f1e262a700ed83edb163a73',
630             },
631             'add_ie': ['Youtube'],
632             'params': {
633                 'skip_download': True,
634             }
635         },
636         # MTVSercices embed
637         {
638             'url': 'http://www.vulture.com/2016/06/new-key-peele-sketches-released.html',
639             'md5': 'ca1aef97695ef2c1d6973256a57e5252',
640             'info_dict': {
641                 'id': '769f7ec0-0692-4d62-9b45-0d88074bffc1',
642                 'ext': 'mp4',
643                 'title': 'Key and Peele|October 10, 2012|2|203|Liam Neesons - Uncensored',
644                 'description': 'Two valets share their love for movie star Liam Neesons.',
645                 'timestamp': 1349922600,
646                 'upload_date': '20121011',
647             },
648         },
649         # YouTube embed via <data-embed-url="">
650         {
651             'url': 'https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM',
652             'info_dict': {
653                 'id': '4vAffPZIT44',
654                 'ext': 'mp4',
655                 'title': 'Asphalt 8: Airborne - Update - Welcome to Dubai!',
656                 'uploader': 'Gameloft',
657                 'uploader_id': 'gameloft',
658                 'upload_date': '20140828',
659                 'description': 'md5:c80da9ed3d83ae6d1876c834de03e1c4',
660             },
661             'params': {
662                 'skip_download': True,
663             }
664         },
665         # Camtasia studio
666         {
667             'url': 'http://www.ll.mit.edu/workshops/education/videocourses/antennas/lecture1/video/',
668             'playlist': [{
669                 'md5': '0c5e352edabf715d762b0ad4e6d9ee67',
670                 'info_dict': {
671                     'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
672                     'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - video1',
673                     'ext': 'flv',
674                     'duration': 2235.90,
675                 }
676             }, {
677                 'md5': '10e4bb3aaca9fd630e273ff92d9f3c63',
678                 'info_dict': {
679                     'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final_PIP',
680                     'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - pip',
681                     'ext': 'flv',
682                     'duration': 2235.93,
683                 }
684             }],
685             'info_dict': {
686                 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
687             }
688         },
689         # Flowplayer
690         {
691             'url': 'http://www.handjobhub.com/video/busty-blonde-siri-tit-fuck-while-wank-6313.html',
692             'md5': '9d65602bf31c6e20014319c7d07fba27',
693             'info_dict': {
694                 'id': '5123ea6d5e5a7',
695                 'ext': 'mp4',
696                 'age_limit': 18,
697                 'uploader': 'www.handjobhub.com',
698                 'title': 'Busty Blonde Siri Tit Fuck While Wank at HandjobHub.com',
699             }
700         },
701         # Multiple brightcove videos
702         # https://github.com/rg3/youtube-dl/issues/2283
703         {
704             'url': 'http://www.newyorker.com/online/blogs/newsdesk/2014/01/always-never-nuclear-command-and-control.html',
705             'info_dict': {
706                 'id': 'always-never',
707                 'title': 'Always / Never - The New Yorker',
708             },
709             'playlist_count': 3,
710             'params': {
711                 'extract_flat': False,
712                 'skip_download': True,
713             }
714         },
715         # MLB embed
716         {
717             'url': 'http://umpire-empire.com/index.php/topic/58125-laz-decides-no-thats-low/',
718             'md5': '96f09a37e44da40dd083e12d9a683327',
719             'info_dict': {
720                 'id': '33322633',
721                 'ext': 'mp4',
722                 'title': 'Ump changes call to ball',
723                 'description': 'md5:71c11215384298a172a6dcb4c2e20685',
724                 'duration': 48,
725                 'timestamp': 1401537900,
726                 'upload_date': '20140531',
727                 'thumbnail': 're:^https?://.*\.jpg$',
728             },
729         },
730         # Wistia embed
731         {
732             'url': 'http://study.com/academy/lesson/north-american-exploration-failed-colonies-of-spain-france-england.html#lesson',
733             'md5': '1953f3a698ab51cfc948ed3992a0b7ff',
734             'info_dict': {
735                 'id': '6e2wtrbdaf',
736                 'ext': 'mov',
737                 'title': 'paywall_north-american-exploration-failed-colonies-of-spain-france-england',
738                 'description': 'a Paywall Videos video from Remilon',
739                 'duration': 644.072,
740                 'uploader': 'study.com',
741                 'timestamp': 1459678540,
742                 'upload_date': '20160403',
743                 'filesize': 24687186,
744             },
745         },
746         {
747             'url': 'http://thoughtworks.wistia.com/medias/uxjb0lwrcz',
748             'md5': 'baf49c2baa8a7de5f3fc145a8506dcd4',
749             'info_dict': {
750                 'id': 'uxjb0lwrcz',
751                 'ext': 'mp4',
752                 'title': 'Conversation about Hexagonal Rails Part 1',
753                 'description': 'a Martin Fowler video from ThoughtWorks',
754                 'duration': 1715.0,
755                 'uploader': 'thoughtworks.wistia.com',
756                 'timestamp': 1401832161,
757                 'upload_date': '20140603',
758             },
759         },
760         # Wistia standard embed (async)
761         {
762             'url': 'https://www.getdrip.com/university/brennan-dunn-drip-workshop/',
763             'info_dict': {
764                 'id': '807fafadvk',
765                 'ext': 'mp4',
766                 'title': 'Drip Brennan Dunn Workshop',
767                 'description': 'a JV Webinars video from getdrip-1',
768                 'duration': 4986.95,
769                 'timestamp': 1463607249,
770                 'upload_date': '20160518',
771             },
772             'params': {
773                 'skip_download': True,
774             }
775         },
776         # Soundcloud embed
777         {
778             'url': 'http://nakedsecurity.sophos.com/2014/10/29/sscc-171-are-you-sure-that-1234-is-a-bad-password-podcast/',
779             'info_dict': {
780                 'id': '174391317',
781                 'ext': 'mp3',
782                 'description': 'md5:ff867d6b555488ad3c52572bb33d432c',
783                 'uploader': 'Sophos Security',
784                 'title': 'Chet Chat 171 - Oct 29, 2014',
785                 'upload_date': '20141029',
786             }
787         },
788         # Soundcloud multiple embeds
789         {
790             'url': 'http://www.guitarplayer.com/lessons/1014/legato-workout-one-hour-to-more-fluid-performance---tab/52809',
791             'info_dict': {
792                 'id': '52809',
793                 'title': 'Guitar Essentials: Legato Workout—One-Hour to Fluid Performance  | TAB + AUDIO',
794             },
795             'playlist_mincount': 7,
796         },
797         # Livestream embed
798         {
799             'url': 'http://www.esa.int/Our_Activities/Space_Science/Rosetta/Philae_comet_touch-down_webcast',
800             'info_dict': {
801                 'id': '67864563',
802                 'ext': 'flv',
803                 'upload_date': '20141112',
804                 'title': 'Rosetta #CometLanding webcast HL 10',
805             }
806         },
807         # Another Livestream embed, without 'new.' in URL
808         {
809             'url': 'https://www.freespeech.org/',
810             'info_dict': {
811                 'id': '123537347',
812                 'ext': 'mp4',
813                 'title': 're:^FSTV [0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}$',
814             },
815             'params': {
816                 # Live stream
817                 'skip_download': True,
818             },
819         },
820         # LazyYT
821         {
822             'url': 'http://discourse.ubuntu.com/t/unity-8-desktop-mode-windows-on-mir/1986',
823             'info_dict': {
824                 'id': '1986',
825                 'title': 'Unity 8 desktop-mode windows on Mir! - Ubuntu Discourse',
826             },
827             'playlist_mincount': 2,
828         },
829         # Cinchcast embed
830         {
831             'url': 'http://undergroundwellness.com/podcasts/306-5-steps-to-permanent-gut-healing/',
832             'info_dict': {
833                 'id': '7141703',
834                 'ext': 'mp3',
835                 'upload_date': '20141126',
836                 'title': 'Jack Tips: 5 Steps to Permanent Gut Healing',
837             }
838         },
839         # Cinerama player
840         {
841             'url': 'http://www.abc.net.au/7.30/content/2015/s4164797.htm',
842             'info_dict': {
843                 'id': '730m_DandD_1901_512k',
844                 'ext': 'mp4',
845                 'uploader': 'www.abc.net.au',
846                 'title': 'Game of Thrones with dice - Dungeons and Dragons fantasy role-playing game gets new life - 19/01/2015',
847             }
848         },
849         # embedded viddler video
850         {
851             'url': 'http://deadspin.com/i-cant-stop-watching-john-wall-chop-the-nuggets-with-th-1681801597',
852             'info_dict': {
853                 'id': '4d03aad9',
854                 'ext': 'mp4',
855                 'uploader': 'deadspin',
856                 'title': 'WALL-TO-GORTAT',
857                 'timestamp': 1422285291,
858                 'upload_date': '20150126',
859             },
860             'add_ie': ['Viddler'],
861         },
862         # Libsyn embed
863         {
864             'url': 'http://thedailyshow.cc.com/podcast/episodetwelve',
865             'info_dict': {
866                 'id': '3377616',
867                 'ext': 'mp3',
868                 'title': "The Daily Show Podcast without Jon Stewart - Episode 12: Bassem Youssef: Egypt's Jon Stewart",
869                 'description': 'md5:601cb790edd05908957dae8aaa866465',
870                 'upload_date': '20150220',
871             },
872             'skip': 'All The Daily Show URLs now redirect to http://www.cc.com/shows/',
873         },
874         # jwplayer YouTube
875         {
876             'url': 'http://media.nationalarchives.gov.uk/index.php/webinar-using-discovery-national-archives-online-catalogue/',
877             'info_dict': {
878                 'id': 'Mrj4DVp2zeA',
879                 'ext': 'mp4',
880                 'upload_date': '20150212',
881                 'uploader': 'The National Archives UK',
882                 'description': 'md5:a236581cd2449dd2df4f93412f3f01c6',
883                 'uploader_id': 'NationalArchives08',
884                 'title': 'Webinar: Using Discovery, The National Archives’ online catalogue',
885             },
886         },
887         # rtl.nl embed
888         {
889             'url': 'http://www.rtlnieuws.nl/nieuws/buitenland/aanslagen-kopenhagen',
890             'playlist_mincount': 5,
891             'info_dict': {
892                 'id': 'aanslagen-kopenhagen',
893                 'title': 'Aanslagen Kopenhagen | RTL Nieuws',
894             }
895         },
896         # Zapiks embed
897         {
898             'url': 'http://www.skipass.com/news/116090-bon-appetit-s5ep3-baqueira-mi-cor.html',
899             'info_dict': {
900                 'id': '118046',
901                 'ext': 'mp4',
902                 'title': 'EP3S5 - Bon Appétit - Baqueira Mi Corazon !',
903             }
904         },
905         # Kaltura embed (different embed code)
906         {
907             'url': 'http://www.premierchristianradio.com/Shows/Saturday/Unbelievable/Conference-Videos/Os-Guinness-Is-It-Fools-Talk-Unbelievable-Conference-2014',
908             'info_dict': {
909                 'id': '1_a52wc67y',
910                 'ext': 'flv',
911                 'upload_date': '20150127',
912                 'uploader_id': 'PremierMedia',
913                 'timestamp': int,
914                 'title': 'Os Guinness // Is It Fools Talk? // Unbelievable? Conference 2014',
915             },
916         },
917         # Kaltura embed protected with referrer
918         {
919             'url': 'http://www.disney.nl/disney-channel/filmpjes/achter-de-schermen#/videoId/violetta-achter-de-schermen-ruggero',
920             'info_dict': {
921                 'id': '1_g4fbemnq',
922                 'ext': 'mp4',
923                 'title': 'Violetta - Achter De Schermen - Ruggero',
924                 'description': 'Achter de schermen met Ruggero',
925                 'timestamp': 1435133761,
926                 'upload_date': '20150624',
927                 'uploader_id': 'echojecka',
928             },
929         },
930         # Kaltura embed with single quotes
931         {
932             'url': 'http://fod.infobase.com/p_ViewPlaylist.aspx?AssignmentID=NUN8ZY',
933             'info_dict': {
934                 'id': '0_izeg5utt',
935                 'ext': 'mp4',
936                 'title': '35871',
937                 'timestamp': 1355743100,
938                 'upload_date': '20121217',
939                 'uploader_id': 'batchUser',
940             },
941             'add_ie': ['Kaltura'],
942         },
943         {
944             # Kaltura embedded via quoted entry_id
945             'url': 'https://www.oreilly.com/ideas/my-cloud-makes-pretty-pictures',
946             'info_dict': {
947                 'id': '0_utuok90b',
948                 'ext': 'mp4',
949                 'title': '06_matthew_brender_raj_dutt',
950                 'timestamp': 1466638791,
951                 'upload_date': '20160622',
952             },
953             'add_ie': ['Kaltura'],
954             'expected_warnings': [
955                 'Could not send HEAD request'
956             ],
957             'params': {
958                 'skip_download': True,
959             }
960         },
961         # Eagle.Platform embed (generic URL)
962         {
963             'url': 'http://lenta.ru/news/2015/03/06/navalny/',
964             # Not checking MD5 as sometimes the direct HTTP link results in 404 and HLS is used
965             'info_dict': {
966                 'id': '227304',
967                 'ext': 'mp4',
968                 'title': 'Навальный вышел на свободу',
969                 'description': 'md5:d97861ac9ae77377f3f20eaf9d04b4f5',
970                 'thumbnail': 're:^https?://.*\.jpg$',
971                 'duration': 87,
972                 'view_count': int,
973                 'age_limit': 0,
974             },
975         },
976         # ClipYou (Eagle.Platform) embed (custom URL)
977         {
978             'url': 'http://muz-tv.ru/play/7129/',
979             # Not checking MD5 as sometimes the direct HTTP link results in 404 and HLS is used
980             'info_dict': {
981                 'id': '12820',
982                 'ext': 'mp4',
983                 'title': "'O Sole Mio",
984                 'thumbnail': 're:^https?://.*\.jpg$',
985                 'duration': 216,
986                 'view_count': int,
987             },
988         },
989         # Pladform embed
990         {
991             'url': 'http://muz-tv.ru/kinozal/view/7400/',
992             'info_dict': {
993                 'id': '100183293',
994                 'ext': 'mp4',
995                 'title': 'Тайны перевала Дятлова • 1 серия 2 часть',
996                 'description': 'Документальный сериал-расследование одной из самых жутких тайн ХХ века',
997                 'thumbnail': 're:^https?://.*\.jpg$',
998                 'duration': 694,
999                 'age_limit': 0,
1000             },
1001         },
1002         # Playwire embed
1003         {
1004             'url': 'http://www.cinemablend.com/new/First-Joe-Dirt-2-Trailer-Teaser-Stupid-Greatness-70874.html',
1005             'info_dict': {
1006                 'id': '3519514',
1007                 'ext': 'mp4',
1008                 'title': 'Joe Dirt 2 Beautiful Loser Teaser Trailer',
1009                 'thumbnail': 're:^https?://.*\.png$',
1010                 'duration': 45.115,
1011             },
1012         },
1013         # 5min embed
1014         {
1015             'url': 'http://techcrunch.com/video/facebook-creates-on-this-day-crunch-report/518726732/',
1016             'md5': '4c6f127a30736b59b3e2c19234ee2bf7',
1017             'info_dict': {
1018                 'id': '518726732',
1019                 'ext': 'mp4',
1020                 'title': 'Facebook Creates "On This Day" | Crunch Report',
1021             },
1022         },
1023         # SVT embed
1024         {
1025             'url': 'http://www.svt.se/sport/ishockey/jagr-tacklar-giroux-under-intervjun',
1026             'info_dict': {
1027                 'id': '2900353',
1028                 'ext': 'flv',
1029                 'title': 'Här trycker Jagr till Giroux (under SVT-intervjun)',
1030                 'duration': 27,
1031                 'age_limit': 0,
1032             },
1033         },
1034         # Crooks and Liars embed
1035         {
1036             'url': 'http://crooksandliars.com/2015/04/fox-friends-says-protecting-atheists',
1037             'info_dict': {
1038                 'id': '8RUoRhRi',
1039                 'ext': 'mp4',
1040                 'title': "Fox & Friends Says Protecting Atheists From Discrimination Is Anti-Christian!",
1041                 'description': 'md5:e1a46ad1650e3a5ec7196d432799127f',
1042                 'timestamp': 1428207000,
1043                 'upload_date': '20150405',
1044                 'uploader': 'Heather',
1045             },
1046         },
1047         # Crooks and Liars external embed
1048         {
1049             'url': 'http://theothermccain.com/2010/02/02/video-proves-that-bill-kristol-has-been-watching-glenn-beck/comment-page-1/',
1050             'info_dict': {
1051                 'id': 'MTE3MjUtMzQ2MzA',
1052                 'ext': 'mp4',
1053                 'title': 'md5:5e3662a81a4014d24c250d76d41a08d5',
1054                 'description': 'md5:9b8e9542d6c3c5de42d6451b7d780cec',
1055                 'timestamp': 1265032391,
1056                 'upload_date': '20100201',
1057                 'uploader': 'Heather',
1058             },
1059         },
1060         # NBC Sports vplayer embed
1061         {
1062             'url': 'http://www.riderfans.com/forum/showthread.php?121827-Freeman&s=e98fa1ea6dc08e886b1678d35212494a',
1063             'info_dict': {
1064                 'id': 'ln7x1qSThw4k',
1065                 'ext': 'flv',
1066                 'title': "PFT Live: New leader in the 'new-look' defense",
1067                 'description': 'md5:65a19b4bbfb3b0c0c5768bed1dfad74e',
1068                 'uploader': 'NBCU-SPORTS',
1069                 'upload_date': '20140107',
1070                 'timestamp': 1389118457,
1071             },
1072         },
1073         # NBC News embed
1074         {
1075             'url': 'http://www.vulture.com/2016/06/letterman-couldnt-care-less-about-late-night.html',
1076             'md5': '1aa589c675898ae6d37a17913cf68d66',
1077             'info_dict': {
1078                 'id': '701714499682',
1079                 'ext': 'mp4',
1080                 'title': 'PREVIEW: On Assignment: David Letterman',
1081                 'description': 'A preview of Tom Brokaw\'s interview with David Letterman as part of the On Assignment series powered by Dateline. Airs Sunday June 12 at 7/6c.',
1082             },
1083         },
1084         # UDN embed
1085         {
1086             'url': 'https://video.udn.com/news/300346',
1087             'md5': 'fd2060e988c326991037b9aff9df21a6',
1088             'info_dict': {
1089                 'id': '300346',
1090                 'ext': 'mp4',
1091                 'title': '中一中男師變性 全校師生力挺',
1092                 'thumbnail': 're:^https?://.*\.jpg$',
1093             },
1094             'params': {
1095                 # m3u8 download
1096                 'skip_download': True,
1097             },
1098         },
1099         # Ooyala embed
1100         {
1101             'url': 'http://www.businessinsider.com/excel-index-match-vlookup-video-how-to-2015-2?IR=T',
1102             'info_dict': {
1103                 'id': '50YnY4czr4ms1vJ7yz3xzq0excz_pUMs',
1104                 'ext': 'mp4',
1105                 'description': 'VIDEO: INDEX/MATCH versus VLOOKUP.',
1106                 'title': 'This is what separates the Excel masters from the wannabes',
1107                 'duration': 191.933,
1108             },
1109             'params': {
1110                 # m3u8 downloads
1111                 'skip_download': True,
1112             }
1113         },
1114         # Brightcove URL in single quotes
1115         {
1116             'url': 'http://www.sportsnet.ca/baseball/mlb/sn-presents-russell-martin-world-citizen/',
1117             'md5': '4ae374f1f8b91c889c4b9203c8c752af',
1118             'info_dict': {
1119                 'id': '4255764656001',
1120                 'ext': 'mp4',
1121                 'title': 'SN Presents: Russell Martin, World Citizen',
1122                 'description': 'To understand why he was the Toronto Blue Jays’ top off-season priority is to appreciate his background and upbringing in Montreal, where he first developed his baseball skills. Written and narrated by Stephen Brunt.',
1123                 'uploader': 'Rogers Sportsnet',
1124                 'uploader_id': '1704050871',
1125                 'upload_date': '20150525',
1126                 'timestamp': 1432570283,
1127             },
1128         },
1129         # Dailymotion Cloud video
1130         {
1131             'url': 'http://replay.publicsenat.fr/vod/le-debat/florent-kolandjian,dominique-cena,axel-decourtye,laurence-abeille,bruno-parmentier/175910',
1132             'md5': 'dcaf23ad0c67a256f4278bce6e0bae38',
1133             'info_dict': {
1134                 'id': 'x2uy8t3',
1135                 'ext': 'mp4',
1136                 'title': 'Sauvons les abeilles ! - Le débat',
1137                 'description': 'md5:d9082128b1c5277987825d684939ca26',
1138                 'thumbnail': 're:^https?://.*\.jpe?g$',
1139                 'timestamp': 1434970506,
1140                 'upload_date': '20150622',
1141                 'uploader': 'Public Sénat',
1142                 'uploader_id': 'xa9gza',
1143             }
1144         },
1145         # OnionStudios embed
1146         {
1147             'url': 'http://www.clickhole.com/video/dont-understand-bitcoin-man-will-mumble-explanatio-2537',
1148             'info_dict': {
1149                 'id': '2855',
1150                 'ext': 'mp4',
1151                 'title': 'Don’t Understand Bitcoin? This Man Will Mumble An Explanation At You',
1152                 'thumbnail': 're:^https?://.*\.jpe?g$',
1153                 'uploader': 'ClickHole',
1154                 'uploader_id': 'clickhole',
1155             }
1156         },
1157         # SnagFilms embed
1158         {
1159             'url': 'http://whilewewatch.blogspot.ru/2012/06/whilewewatch-whilewewatch-gripping.html',
1160             'info_dict': {
1161                 'id': '74849a00-85a9-11e1-9660-123139220831',
1162                 'ext': 'mp4',
1163                 'title': '#whilewewatch',
1164             }
1165         },
1166         # AdobeTVVideo embed
1167         {
1168             'url': 'https://helpx.adobe.com/acrobat/how-to/new-experience-acrobat-dc.html?set=acrobat--get-started--essential-beginners',
1169             'md5': '43662b577c018ad707a63766462b1e87',
1170             'info_dict': {
1171                 'id': '2456',
1172                 'ext': 'mp4',
1173                 'title': 'New experience with Acrobat DC',
1174                 'description': 'New experience with Acrobat DC',
1175                 'duration': 248.667,
1176             },
1177         },
1178         # ScreenwaveMedia embed
1179         {
1180             'url': 'http://www.thecinemasnob.com/the-cinema-snob/a-nightmare-on-elm-street-2-freddys-revenge1',
1181             'md5': '24ace5baba0d35d55c6810b51f34e9e0',
1182             'info_dict': {
1183                 'id': 'cinemasnob-55d26273809dd',
1184                 'ext': 'mp4',
1185                 'title': 'cinemasnob',
1186             },
1187         },
1188         # BrightcoveInPageEmbed embed
1189         {
1190             'url': 'http://www.geekandsundry.com/tabletop-bonus-wils-final-thoughts-on-dread/',
1191             'info_dict': {
1192                 'id': '4238694884001',
1193                 'ext': 'flv',
1194                 'title': 'Tabletop: Dread, Last Thoughts',
1195                 'description': 'Tabletop: Dread, Last Thoughts',
1196                 'duration': 51690,
1197             },
1198         },
1199         # JWPlayer with M3U8
1200         {
1201             'url': 'http://ren.tv/novosti/2015-09-25/sluchaynyy-prohozhiy-poymal-avtougonshchika-v-murmanske-video',
1202             'info_dict': {
1203                 'id': 'playlist',
1204                 'ext': 'mp4',
1205                 'title': 'Случайный прохожий поймал автоугонщика в Мурманске. ВИДЕО | РЕН ТВ',
1206                 'uploader': 'ren.tv',
1207             },
1208             'params': {
1209                 # m3u8 downloads
1210                 'skip_download': True,
1211             }
1212         },
1213         # Brightcove embed, with no valid 'renditions' but valid 'IOSRenditions'
1214         # This video can't be played in browsers if Flash disabled and UA set to iPhone, which is actually a false alarm
1215         {
1216             'url': 'https://dl.dropboxusercontent.com/u/29092637/interview.html',
1217             'info_dict': {
1218                 'id': '4785848093001',
1219                 'ext': 'mp4',
1220                 'title': 'The Cardinal Pell Interview',
1221                 'description': 'Sky News Contributor Andrew Bolt interviews George Pell in Rome, following the Cardinal\'s evidence before the Royal Commission into Child Abuse. ',
1222                 'uploader': 'GlobeCast Australia - GlobeStream',
1223                 'uploader_id': '2733773828001',
1224                 'upload_date': '20160304',
1225                 'timestamp': 1457083087,
1226             },
1227             'params': {
1228                 # m3u8 downloads
1229                 'skip_download': True,
1230             },
1231         },
1232         # Another form of arte.tv embed
1233         {
1234             'url': 'http://www.tv-replay.fr/redirection/09-04-16/arte-reportage-arte-11508975.html',
1235             'md5': '850bfe45417ddf221288c88a0cffe2e2',
1236             'info_dict': {
1237                 'id': '030273-562_PLUS7-F',
1238                 'ext': 'mp4',
1239                 'title': 'ARTE Reportage - Nulle part, en France',
1240                 'description': 'md5:e3a0e8868ed7303ed509b9e3af2b870d',
1241                 'upload_date': '20160409',
1242             },
1243         },
1244         # LiveLeak embed
1245         {
1246             'url': 'http://www.wykop.pl/link/3088787/',
1247             'md5': 'ace83b9ed19b21f68e1b50e844fdf95d',
1248             'info_dict': {
1249                 'id': '874_1459135191',
1250                 'ext': 'mp4',
1251                 'title': 'Man shows poor quality of new apartment building',
1252                 'description': 'The wall is like a sand pile.',
1253                 'uploader': 'Lake8737',
1254             }
1255         },
1256         # Duplicated embedded video URLs
1257         {
1258             'url': 'http://www.hudl.com/athlete/2538180/highlights/149298443',
1259             'info_dict': {
1260                 'id': '149298443_480_16c25b74_2',
1261                 'ext': 'mp4',
1262                 'title': 'vs. Blue Orange Spring Game',
1263                 'uploader': 'www.hudl.com',
1264             },
1265         },
1266         # twitter:player:stream embed
1267         {
1268             'url': 'http://www.rtl.be/info/video/589263.aspx?CategoryID=288',
1269             'info_dict': {
1270                 'id': 'master',
1271                 'ext': 'mp4',
1272                 'title': 'Une nouvelle espèce de dinosaure découverte en Argentine',
1273                 'uploader': 'www.rtl.be',
1274             },
1275             'params': {
1276                 # m3u8 downloads
1277                 'skip_download': True,
1278             },
1279         },
1280         # twitter:player embed
1281         {
1282             'url': 'http://www.theatlantic.com/video/index/484130/what-do-black-holes-sound-like/',
1283             'md5': 'a3e0df96369831de324f0778e126653c',
1284             'info_dict': {
1285                 'id': '4909620399001',
1286                 'ext': 'mp4',
1287                 'title': 'What Do Black Holes Sound Like?',
1288                 'description': 'what do black holes sound like',
1289                 'upload_date': '20160524',
1290                 'uploader_id': '29913724001',
1291                 'timestamp': 1464107587,
1292                 'uploader': 'TheAtlantic',
1293             },
1294             'add_ie': ['BrightcoveLegacy'],
1295         },
1296         # Facebook <iframe> embed
1297         {
1298             'url': 'https://www.hostblogger.de/blog/archives/6181-Auto-jagt-Betonmischer.html',
1299             'md5': 'fbcde74f534176ecb015849146dd3aee',
1300             'info_dict': {
1301                 'id': '599637780109885',
1302                 'ext': 'mp4',
1303                 'title': 'Facebook video #599637780109885',
1304             },
1305         },
1306         # Facebook API embed
1307         {
1308             'url': 'http://www.lothype.com/blue-stars-2016-preview-standstill-full-show/',
1309             'md5': 'a47372ee61b39a7b90287094d447d94e',
1310             'info_dict': {
1311                 'id': '10153467542406923',
1312                 'ext': 'mp4',
1313                 'title': 'Facebook video #10153467542406923',
1314             },
1315         },
1316         # Wordpress "YouTube Video Importer" plugin
1317         {
1318             'url': 'http://www.lothype.com/blue-devils-drumline-stanford-lot-2016/',
1319             'md5': 'd16797741b560b485194eddda8121b48',
1320             'info_dict': {
1321                 'id': 'HNTXWDXV9Is',
1322                 'ext': 'mp4',
1323                 'title': 'Blue Devils Drumline Stanford lot 2016',
1324                 'upload_date': '20160627',
1325                 'uploader_id': 'GENOCIDE8GENERAL10',
1326                 'uploader': 'cylus cyrus',
1327             },
1328         },
1329         {
1330             # video stored on custom kaltura server
1331             'url': 'http://www.expansion.com/multimedia/videos.html?media=EQcM30NHIPv',
1332             'md5': '537617d06e64dfed891fa1593c4b30cc',
1333             'info_dict': {
1334                 'id': '0_1iotm5bh',
1335                 'ext': 'mp4',
1336                 'title': 'Elecciones británicas: 5 lecciones para Rajoy',
1337                 'description': 'md5:435a89d68b9760b92ce67ed227055f16',
1338                 'uploader_id': 'videos.expansion@el-mundo.net',
1339                 'upload_date': '20150429',
1340                 'timestamp': 1430303472,
1341             },
1342             'add_ie': ['Kaltura'],
1343         },
1344         {
1345             # Non-standard Vimeo embed
1346             'url': 'https://openclassrooms.com/courses/understanding-the-web',
1347             'md5': '64d86f1c7d369afd9a78b38cbb88d80a',
1348             'info_dict': {
1349                 'id': '148867247',
1350                 'ext': 'mp4',
1351                 'title': 'Understanding the web - Teaser',
1352                 'description': 'This is "Understanding the web - Teaser" by openclassrooms on Vimeo, the home for high quality videos and the people who love them.',
1353                 'upload_date': '20151214',
1354                 'uploader': 'OpenClassrooms',
1355                 'uploader_id': 'openclassrooms',
1356             },
1357             'add_ie': ['Vimeo'],
1358         },
1359         {
1360             'url': 'https://support.arkena.com/display/PLAY/Ways+to+embed+your+video',
1361             'md5': 'b96f2f71b359a8ecd05ce4e1daa72365',
1362             'info_dict': {
1363                 'id': 'b41dda37-d8e7-4d3f-b1b5-9a9db578bdfe',
1364                 'ext': 'mp4',
1365                 'title': 'Big Buck Bunny',
1366                 'description': 'Royalty free test video',
1367                 'timestamp': 1432816365,
1368                 'upload_date': '20150528',
1369                 'is_live': False,
1370             },
1371             'params': {
1372                 'skip_download': True,
1373             },
1374             'add_ie': [ArkenaIE.ie_key()],
1375         },
1376         # {
1377         #     # TODO: find another test
1378         #     # http://schema.org/VideoObject
1379         #     'url': 'https://flipagram.com/f/nyvTSJMKId',
1380         #     'md5': '888dcf08b7ea671381f00fab74692755',
1381         #     'info_dict': {
1382         #         'id': 'nyvTSJMKId',
1383         #         'ext': 'mp4',
1384         #         'title': 'Flipagram by sjuria101 featuring Midnight Memories by One Direction',
1385         #         'description': '#love for cats.',
1386         #         'timestamp': 1461244995,
1387         #         'upload_date': '20160421',
1388         #     },
1389         #     'params': {
1390         #         'force_generic_extractor': True,
1391         #     },
1392         # }
1393     ]
1394
1395     def report_following_redirect(self, new_url):
1396         """Report information extraction."""
1397         self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
1398
1399     def _extract_rss(self, url, video_id, doc):
1400         playlist_title = doc.find('./channel/title').text
1401         playlist_desc_el = doc.find('./channel/description')
1402         playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
1403
1404         entries = []
1405         for it in doc.findall('./channel/item'):
1406             next_url = xpath_text(it, 'link', fatal=False)
1407             if not next_url:
1408                 enclosure_nodes = it.findall('./enclosure')
1409                 for e in enclosure_nodes:
1410                     next_url = e.attrib.get('url')
1411                     if next_url:
1412                         break
1413
1414             if not next_url:
1415                 continue
1416
1417             entries.append({
1418                 '_type': 'url',
1419                 'url': next_url,
1420                 'title': it.find('title').text,
1421             })
1422
1423         return {
1424             '_type': 'playlist',
1425             'id': url,
1426             'title': playlist_title,
1427             'description': playlist_desc,
1428             'entries': entries,
1429         }
1430
1431     def _extract_camtasia(self, url, video_id, webpage):
1432         """ Returns None if no camtasia video can be found. """
1433
1434         camtasia_cfg = self._search_regex(
1435             r'fo\.addVariable\(\s*"csConfigFile",\s*"([^"]+)"\s*\);',
1436             webpage, 'camtasia configuration file', default=None)
1437         if camtasia_cfg is None:
1438             return None
1439
1440         title = self._html_search_meta('DC.title', webpage, fatal=True)
1441
1442         camtasia_url = compat_urlparse.urljoin(url, camtasia_cfg)
1443         camtasia_cfg = self._download_xml(
1444             camtasia_url, video_id,
1445             note='Downloading camtasia configuration',
1446             errnote='Failed to download camtasia configuration')
1447         fileset_node = camtasia_cfg.find('./playlist/array/fileset')
1448
1449         entries = []
1450         for n in fileset_node.getchildren():
1451             url_n = n.find('./uri')
1452             if url_n is None:
1453                 continue
1454
1455             entries.append({
1456                 'id': os.path.splitext(url_n.text.rpartition('/')[2])[0],
1457                 'title': '%s - %s' % (title, n.tag),
1458                 'url': compat_urlparse.urljoin(url, url_n.text),
1459                 'duration': float_or_none(n.find('./duration').text),
1460             })
1461
1462         return {
1463             '_type': 'playlist',
1464             'entries': entries,
1465             'title': title,
1466         }
1467
1468     def _real_extract(self, url):
1469         if url.startswith('//'):
1470             return {
1471                 '_type': 'url',
1472                 'url': self.http_scheme() + url,
1473             }
1474
1475         parsed_url = compat_urlparse.urlparse(url)
1476         if not parsed_url.scheme:
1477             default_search = self._downloader.params.get('default_search')
1478             if default_search is None:
1479                 default_search = 'fixup_error'
1480
1481             if default_search in ('auto', 'auto_warning', 'fixup_error'):
1482                 if '/' in url:
1483                     self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
1484                     return self.url_result('http://' + url)
1485                 elif default_search != 'fixup_error':
1486                     if default_search == 'auto_warning':
1487                         if re.match(r'^(?:url|URL)$', url):
1488                             raise ExtractorError(
1489                                 'Invalid URL:  %r . Call youtube-dl like this:  youtube-dl -v "https://www.youtube.com/watch?v=BaW_jenozKc"  ' % url,
1490                                 expected=True)
1491                         else:
1492                             self._downloader.report_warning(
1493                                 'Falling back to youtube search for  %s . Set --default-search "auto" to suppress this warning.' % url)
1494                     return self.url_result('ytsearch:' + url)
1495
1496             if default_search in ('error', 'fixup_error'):
1497                 raise ExtractorError(
1498                     '%r is not a valid URL. '
1499                     'Set --default-search "ytsearch" (or run  youtube-dl "ytsearch:%s" ) to search YouTube'
1500                     % (url, url), expected=True)
1501             else:
1502                 if ':' not in default_search:
1503                     default_search += ':'
1504                 return self.url_result(default_search + url)
1505
1506         url, smuggled_data = unsmuggle_url(url)
1507         force_videoid = None
1508         is_intentional = smuggled_data and smuggled_data.get('to_generic')
1509         if smuggled_data and 'force_videoid' in smuggled_data:
1510             force_videoid = smuggled_data['force_videoid']
1511             video_id = force_videoid
1512         else:
1513             video_id = compat_urllib_parse_unquote(os.path.splitext(url.rstrip('/').split('/')[-1])[0])
1514
1515         self.to_screen('%s: Requesting header' % video_id)
1516
1517         head_req = HEADRequest(url)
1518         head_response = self._request_webpage(
1519             head_req, video_id,
1520             note=False, errnote='Could not send HEAD request to %s' % url,
1521             fatal=False)
1522
1523         if head_response is not False:
1524             # Check for redirect
1525             new_url = head_response.geturl()
1526             if url != new_url:
1527                 self.report_following_redirect(new_url)
1528                 if force_videoid:
1529                     new_url = smuggle_url(
1530                         new_url, {'force_videoid': force_videoid})
1531                 return self.url_result(new_url)
1532
1533         full_response = None
1534         if head_response is False:
1535             request = sanitized_Request(url)
1536             request.add_header('Accept-Encoding', '*')
1537             full_response = self._request_webpage(request, video_id)
1538             head_response = full_response
1539
1540         info_dict = {
1541             'id': video_id,
1542             'title': compat_urllib_parse_unquote(os.path.splitext(url_basename(url))[0]),
1543             'upload_date': unified_strdate(head_response.headers.get('Last-Modified'))
1544         }
1545
1546         # Check for direct link to a video
1547         content_type = head_response.headers.get('Content-Type', '').lower()
1548         m = re.match(r'^(?P<type>audio|video|application(?=/(?:ogg$|(?:vnd\.apple\.|x-)?mpegurl)))/(?P<format_id>[^;\s]+)', content_type)
1549         if m:
1550             format_id = m.group('format_id')
1551             if format_id.endswith('mpegurl'):
1552                 formats = self._extract_m3u8_formats(url, video_id, 'mp4')
1553             elif format_id == 'f4m':
1554                 formats = self._extract_f4m_formats(url, video_id)
1555             else:
1556                 formats = [{
1557                     'format_id': m.group('format_id'),
1558                     'url': url,
1559                     'vcodec': 'none' if m.group('type') == 'audio' else None
1560                 }]
1561                 info_dict['direct'] = True
1562             self._sort_formats(formats)
1563             info_dict['formats'] = formats
1564             return info_dict
1565
1566         if not self._downloader.params.get('test', False) and not is_intentional:
1567             force = self._downloader.params.get('force_generic_extractor', False)
1568             self._downloader.report_warning(
1569                 '%s on generic information extractor.' % ('Forcing' if force else 'Falling back'))
1570
1571         if not full_response:
1572             request = sanitized_Request(url)
1573             # Some webservers may serve compressed content of rather big size (e.g. gzipped flac)
1574             # making it impossible to download only chunk of the file (yet we need only 512kB to
1575             # test whether it's HTML or not). According to youtube-dl default Accept-Encoding
1576             # that will always result in downloading the whole file that is not desirable.
1577             # Therefore for extraction pass we have to override Accept-Encoding to any in order
1578             # to accept raw bytes and being able to download only a chunk.
1579             # It may probably better to solve this by checking Content-Type for application/octet-stream
1580             # after HEAD request finishes, but not sure if we can rely on this.
1581             request.add_header('Accept-Encoding', '*')
1582             full_response = self._request_webpage(request, video_id)
1583
1584         first_bytes = full_response.read(512)
1585
1586         # Is it an M3U playlist?
1587         if first_bytes.startswith(b'#EXTM3U'):
1588             info_dict['formats'] = self._extract_m3u8_formats(url, video_id, 'mp4')
1589             self._sort_formats(info_dict['formats'])
1590             return info_dict
1591
1592         # Maybe it's a direct link to a video?
1593         # Be careful not to download the whole thing!
1594         if not is_html(first_bytes):
1595             self._downloader.report_warning(
1596                 'URL could be a direct video link, returning it as such.')
1597             info_dict.update({
1598                 'direct': True,
1599                 'url': url,
1600             })
1601             return info_dict
1602
1603         webpage = self._webpage_read_content(
1604             full_response, url, video_id, prefix=first_bytes)
1605
1606         self.report_extraction(video_id)
1607
1608         # Is it an RSS feed, a SMIL file, an XSPF playlist or a MPD manifest?
1609         try:
1610             doc = compat_etree_fromstring(webpage.encode('utf-8'))
1611             if doc.tag == 'rss':
1612                 return self._extract_rss(url, video_id, doc)
1613             elif re.match(r'^(?:{[^}]+})?smil$', doc.tag):
1614                 smil = self._parse_smil(doc, url, video_id)
1615                 self._sort_formats(smil['formats'])
1616                 return smil
1617             elif doc.tag == '{http://xspf.org/ns/0/}playlist':
1618                 return self.playlist_result(self._parse_xspf(doc, video_id), video_id)
1619             elif re.match(r'(?i)^(?:{[^}]+})?MPD$', doc.tag):
1620                 info_dict['formats'] = self._parse_mpd_formats(
1621                     doc, video_id, mpd_base_url=url.rpartition('/')[0])
1622                 self._sort_formats(info_dict['formats'])
1623                 return info_dict
1624             elif re.match(r'^{http://ns\.adobe\.com/f4m/[12]\.0}manifest$', doc.tag):
1625                 info_dict['formats'] = self._parse_f4m_formats(doc, url, video_id)
1626                 self._sort_formats(info_dict['formats'])
1627                 return info_dict
1628         except compat_xml_parse_error:
1629             pass
1630
1631         # Is it a Camtasia project?
1632         camtasia_res = self._extract_camtasia(url, video_id, webpage)
1633         if camtasia_res is not None:
1634             return camtasia_res
1635
1636         # Sometimes embedded video player is hidden behind percent encoding
1637         # (e.g. https://github.com/rg3/youtube-dl/issues/2448)
1638         # Unescaping the whole page allows to handle those cases in a generic way
1639         webpage = compat_urllib_parse_unquote(webpage)
1640
1641         # it's tempting to parse this further, but you would
1642         # have to take into account all the variations like
1643         #   Video Title - Site Name
1644         #   Site Name | Video Title
1645         #   Video Title - Tagline | Site Name
1646         # and so on and so forth; it's just not practical
1647         video_title = self._og_search_title(
1648             webpage, default=None) or self._html_search_regex(
1649             r'(?s)<title>(.*?)</title>', webpage, 'video title',
1650             default='video')
1651
1652         # Try to detect age limit automatically
1653         age_limit = self._rta_search(webpage)
1654         # And then there are the jokers who advertise that they use RTA,
1655         # but actually don't.
1656         AGE_LIMIT_MARKERS = [
1657             r'Proudly Labeled <a href="http://www.rtalabel.org/" title="Restricted to Adults">RTA</a>',
1658         ]
1659         if any(re.search(marker, webpage) for marker in AGE_LIMIT_MARKERS):
1660             age_limit = 18
1661
1662         # video uploader is domain name
1663         video_uploader = self._search_regex(
1664             r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
1665
1666         video_description = self._og_search_description(webpage, default=None)
1667         video_thumbnail = self._og_search_thumbnail(webpage, default=None)
1668
1669         # Helper method
1670         def _playlist_from_matches(matches, getter=None, ie=None):
1671             urlrs = orderedSet(
1672                 self.url_result(self._proto_relative_url(getter(m) if getter else m), ie)
1673                 for m in matches)
1674             return self.playlist_result(
1675                 urlrs, playlist_id=video_id, playlist_title=video_title)
1676
1677         # Look for Brightcove Legacy Studio embeds
1678         bc_urls = BrightcoveLegacyIE._extract_brightcove_urls(webpage)
1679         if bc_urls:
1680             self.to_screen('Brightcove video detected.')
1681             entries = [{
1682                 '_type': 'url',
1683                 'url': smuggle_url(bc_url, {'Referer': url}),
1684                 'ie_key': 'BrightcoveLegacy'
1685             } for bc_url in bc_urls]
1686
1687             return {
1688                 '_type': 'playlist',
1689                 'title': video_title,
1690                 'id': video_id,
1691                 'entries': entries,
1692             }
1693
1694         # Look for Brightcove New Studio embeds
1695         bc_urls = BrightcoveNewIE._extract_urls(webpage)
1696         if bc_urls:
1697             return _playlist_from_matches(bc_urls, ie='BrightcoveNew')
1698
1699         # Look for ThePlatform embeds
1700         tp_urls = ThePlatformIE._extract_urls(webpage)
1701         if tp_urls:
1702             return _playlist_from_matches(tp_urls, ie='ThePlatform')
1703
1704         # Look for Vessel embeds
1705         vessel_urls = VesselIE._extract_urls(webpage)
1706         if vessel_urls:
1707             return _playlist_from_matches(vessel_urls, ie=VesselIE.ie_key())
1708
1709         # Look for embedded rtl.nl player
1710         matches = re.findall(
1711             r'<iframe[^>]+?src="((?:https?:)?//(?:www\.)?rtl\.nl/system/videoplayer/[^"]+(?:video_)?embed[^"]+)"',
1712             webpage)
1713         if matches:
1714             return _playlist_from_matches(matches, ie='RtlNl')
1715
1716         vimeo_url = VimeoIE._extract_vimeo_url(url, webpage)
1717         if vimeo_url is not None:
1718             return self.url_result(vimeo_url)
1719
1720         vid_me_embed_url = self._search_regex(
1721             r'src=[\'"](https?://vid\.me/[^\'"]+)[\'"]',
1722             webpage, 'vid.me embed', default=None)
1723         if vid_me_embed_url is not None:
1724             return self.url_result(vid_me_embed_url, 'Vidme')
1725
1726         # Look for embedded YouTube player
1727         matches = re.findall(r'''(?x)
1728             (?:
1729                 <iframe[^>]+?src=|
1730                 data-video-url=|
1731                 <embed[^>]+?src=|
1732                 embedSWF\(?:\s*|
1733                 new\s+SWFObject\(
1734             )
1735             (["\'])
1736                 (?P<url>(?:https?:)?//(?:www\.)?youtube(?:-nocookie)?\.com/
1737                 (?:embed|v|p)/.+?)
1738             \1''', webpage)
1739         if matches:
1740             return _playlist_from_matches(
1741                 matches, lambda m: unescapeHTML(m[1]))
1742
1743         # Look for lazyYT YouTube embed
1744         matches = re.findall(
1745             r'class="lazyYT" data-youtube-id="([^"]+)"', webpage)
1746         if matches:
1747             return _playlist_from_matches(matches, lambda m: unescapeHTML(m))
1748
1749         # Look for Wordpress "YouTube Video Importer" plugin
1750         matches = re.findall(r'''(?x)<div[^>]+
1751             class=(?P<q1>[\'"])[^\'"]*\byvii_single_video_player\b[^\'"]*(?P=q1)[^>]+
1752             data-video_id=(?P<q2>[\'"])([^\'"]+)(?P=q2)''', webpage)
1753         if matches:
1754             return _playlist_from_matches(matches, lambda m: m[-1])
1755
1756         matches = DailymotionIE._extract_urls(webpage)
1757         if matches:
1758             return _playlist_from_matches(matches)
1759
1760         # Look for embedded Dailymotion playlist player (#3822)
1761         m = re.search(
1762             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.[a-z]{2,3}/widget/jukebox\?.+?)\1', webpage)
1763         if m:
1764             playlists = re.findall(
1765                 r'list\[\]=/playlist/([^/]+)/', unescapeHTML(m.group('url')))
1766             if playlists:
1767                 return _playlist_from_matches(
1768                     playlists, lambda p: '//dailymotion.com/playlist/%s' % p)
1769
1770         # Look for embedded Wistia player
1771         match = re.search(
1772             r'<(?:meta[^>]+?content|iframe[^>]+?src)=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
1773         if match:
1774             embed_url = self._proto_relative_url(
1775                 unescapeHTML(match.group('url')))
1776             return {
1777                 '_type': 'url_transparent',
1778                 'url': embed_url,
1779                 'ie_key': 'Wistia',
1780                 'uploader': video_uploader,
1781             }
1782
1783         match = re.search(r'(?:id=["\']wistia_|data-wistia-?id=["\']|Wistia\.embed\(["\'])(?P<id>[^"\']+)', webpage)
1784         if match:
1785             return {
1786                 '_type': 'url_transparent',
1787                 'url': 'wistia:%s' % match.group('id'),
1788                 'ie_key': 'Wistia',
1789                 'uploader': video_uploader,
1790             }
1791
1792         match = re.search(
1793             r'''(?sx)
1794                 <script[^>]+src=(["'])(?:https?:)?//fast\.wistia\.com/assets/external/E-v1\.js\1[^>]*>.*?
1795                 <div[^>]+class=(["']).*?\bwistia_async_(?P<id>[a-z0-9]+)\b.*?\2
1796             ''', webpage)
1797         if match:
1798             return self.url_result(self._proto_relative_url(
1799                 'wistia:%s' % match.group('id')), 'Wistia')
1800
1801         # Look for SVT player
1802         svt_url = SVTIE._extract_url(webpage)
1803         if svt_url:
1804             return self.url_result(svt_url, 'SVT')
1805
1806         # Look for embedded condenast player
1807         matches = re.findall(
1808             r'<iframe\s+(?:[a-zA-Z-]+="[^"]+"\s+)*?src="(https?://player\.cnevids\.com/embed/[^"]+")',
1809             webpage)
1810         if matches:
1811             return {
1812                 '_type': 'playlist',
1813                 'entries': [{
1814                     '_type': 'url',
1815                     'ie_key': 'CondeNast',
1816                     'url': ma,
1817                 } for ma in matches],
1818                 'title': video_title,
1819                 'id': video_id,
1820             }
1821
1822         # Look for Bandcamp pages with custom domain
1823         mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
1824         if mobj is not None:
1825             burl = unescapeHTML(mobj.group(1))
1826             # Don't set the extractor because it can be a track url or an album
1827             return self.url_result(burl)
1828
1829         # Look for embedded Vevo player
1830         mobj = re.search(
1831             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
1832         if mobj is not None:
1833             return self.url_result(mobj.group('url'))
1834
1835         # Look for embedded Viddler player
1836         mobj = re.search(
1837             r'<(?:iframe[^>]+?src|param[^>]+?value)=(["\'])(?P<url>(?:https?:)?//(?:www\.)?viddler\.com/(?:embed|player)/.+?)\1',
1838             webpage)
1839         if mobj is not None:
1840             return self.url_result(mobj.group('url'))
1841
1842         # Look for NYTimes player
1843         mobj = re.search(
1844             r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//graphics8\.nytimes\.com/bcvideo/[^/]+/iframe/embed\.html.+?)\1>',
1845             webpage)
1846         if mobj is not None:
1847             return self.url_result(mobj.group('url'))
1848
1849         # Look for Libsyn player
1850         mobj = re.search(
1851             r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//html5-player\.libsyn\.com/embed/.+?)\1', webpage)
1852         if mobj is not None:
1853             return self.url_result(mobj.group('url'))
1854
1855         # Look for Ooyala videos
1856         mobj = (re.search(r'player\.ooyala\.com/[^"?]+[?#][^"]*?(?:embedCode|ec)=(?P<ec>[^"&]+)', webpage) or
1857                 re.search(r'OO\.Player\.create\([\'"].*?[\'"],\s*[\'"](?P<ec>.{32})[\'"]', webpage) or
1858                 re.search(r'SBN\.VideoLinkset\.ooyala\([\'"](?P<ec>.{32})[\'"]\)', webpage) or
1859                 re.search(r'data-ooyala-video-id\s*=\s*[\'"](?P<ec>.{32})[\'"]', webpage))
1860         if mobj is not None:
1861             return OoyalaIE._build_url_result(smuggle_url(mobj.group('ec'), {'domain': url}))
1862
1863         # Look for multiple Ooyala embeds on SBN network websites
1864         mobj = re.search(r'SBN\.VideoLinkset\.entryGroup\((\[.*?\])', webpage)
1865         if mobj is not None:
1866             embeds = self._parse_json(mobj.group(1), video_id, fatal=False)
1867             if embeds:
1868                 return _playlist_from_matches(
1869                     embeds, getter=lambda v: OoyalaIE._url_for_embed_code(smuggle_url(v['provider_video_id'], {'domain': url})), ie='Ooyala')
1870
1871         # Look for Aparat videos
1872         mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
1873         if mobj is not None:
1874             return self.url_result(mobj.group(1), 'Aparat')
1875
1876         # Look for MPORA videos
1877         mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
1878         if mobj is not None:
1879             return self.url_result(mobj.group(1), 'Mpora')
1880
1881         # Look for embedded NovaMov-based player
1882         mobj = re.search(
1883             r'''(?x)<(?:pagespeed_)?iframe[^>]+?src=(["\'])
1884                     (?P<url>http://(?:(?:embed|www)\.)?
1885                         (?:novamov\.com|
1886                            nowvideo\.(?:ch|sx|eu|at|ag|co)|
1887                            videoweed\.(?:es|com)|
1888                            movshare\.(?:net|sx|ag)|
1889                            divxstage\.(?:eu|net|ch|co|at|ag))
1890                         /embed\.php.+?)\1''', webpage)
1891         if mobj is not None:
1892             return self.url_result(mobj.group('url'))
1893
1894         # Look for embedded Facebook player
1895         facebook_url = FacebookIE._extract_url(webpage)
1896         if facebook_url is not None:
1897             return self.url_result(facebook_url, 'Facebook')
1898
1899         # Look for embedded VK player
1900         mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
1901         if mobj is not None:
1902             return self.url_result(mobj.group('url'), 'VK')
1903
1904         # Look for embedded Odnoklassniki player
1905         mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:odnoklassniki|ok)\.ru/videoembed/.+?)\1', webpage)
1906         if mobj is not None:
1907             return self.url_result(mobj.group('url'), 'Odnoklassniki')
1908
1909         # Look for embedded ivi player
1910         mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage)
1911         if mobj is not None:
1912             return self.url_result(mobj.group('url'), 'Ivi')
1913
1914         # Look for embedded Huffington Post player
1915         mobj = re.search(
1916             r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
1917         if mobj is not None:
1918             return self.url_result(mobj.group('url'), 'HuffPost')
1919
1920         # Look for embed.ly
1921         mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
1922         if mobj is not None:
1923             return self.url_result(mobj.group('url'))
1924         mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
1925         if mobj is not None:
1926             return self.url_result(compat_urllib_parse_unquote(mobj.group('url')))
1927
1928         # Look for funnyordie embed
1929         matches = re.findall(r'<iframe[^>]+?src="(https?://(?:www\.)?funnyordie\.com/embed/[^"]+)"', webpage)
1930         if matches:
1931             return _playlist_from_matches(
1932                 matches, getter=unescapeHTML, ie='FunnyOrDie')
1933
1934         # Look for BBC iPlayer embed
1935         matches = re.findall(r'setPlaylist\("(https?://www\.bbc\.co\.uk/iplayer/[^/]+/[\da-z]{8})"\)', webpage)
1936         if matches:
1937             return _playlist_from_matches(matches, ie='BBCCoUk')
1938
1939         # Look for embedded RUTV player
1940         rutv_url = RUTVIE._extract_url(webpage)
1941         if rutv_url:
1942             return self.url_result(rutv_url, 'RUTV')
1943
1944         # Look for embedded TVC player
1945         tvc_url = TVCIE._extract_url(webpage)
1946         if tvc_url:
1947             return self.url_result(tvc_url, 'TVC')
1948
1949         # Look for embedded SportBox player
1950         sportbox_urls = SportBoxEmbedIE._extract_urls(webpage)
1951         if sportbox_urls:
1952             return _playlist_from_matches(sportbox_urls, ie='SportBoxEmbed')
1953
1954         # Look for embedded PornHub player
1955         pornhub_url = PornHubIE._extract_url(webpage)
1956         if pornhub_url:
1957             return self.url_result(pornhub_url, 'PornHub')
1958
1959         # Look for embedded XHamster player
1960         xhamster_urls = XHamsterEmbedIE._extract_urls(webpage)
1961         if xhamster_urls:
1962             return _playlist_from_matches(xhamster_urls, ie='XHamsterEmbed')
1963
1964         # Look for embedded TNAFlixNetwork player
1965         tnaflix_urls = TNAFlixNetworkEmbedIE._extract_urls(webpage)
1966         if tnaflix_urls:
1967             return _playlist_from_matches(tnaflix_urls, ie=TNAFlixNetworkEmbedIE.ie_key())
1968
1969         # Look for embedded Tvigle player
1970         mobj = re.search(
1971             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//cloud\.tvigle\.ru/video/.+?)\1', webpage)
1972         if mobj is not None:
1973             return self.url_result(mobj.group('url'), 'Tvigle')
1974
1975         # Look for embedded TED player
1976         mobj = re.search(
1977             r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed(?:-ssl)?\.ted\.com/.+?)\1', webpage)
1978         if mobj is not None:
1979             return self.url_result(mobj.group('url'), 'TED')
1980
1981         # Look for embedded Ustream videos
1982         mobj = re.search(
1983             r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage)
1984         if mobj is not None:
1985             return self.url_result(mobj.group('url'), 'Ustream')
1986
1987         # Look for embedded arte.tv player
1988         mobj = re.search(
1989             r'<(?:script|iframe) [^>]*?src="(?P<url>http://www\.arte\.tv/(?:playerv2/embed|arte_vp/index)[^"]+)"',
1990             webpage)
1991         if mobj is not None:
1992             return self.url_result(mobj.group('url'), 'ArteTVEmbed')
1993
1994         # Look for embedded francetv player
1995         mobj = re.search(
1996             r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?://)?embed\.francetv\.fr/\?ue=.+?)\1',
1997             webpage)
1998         if mobj is not None:
1999             return self.url_result(mobj.group('url'))
2000
2001         # Look for embedded smotri.com player
2002         smotri_url = SmotriIE._extract_url(webpage)
2003         if smotri_url:
2004             return self.url_result(smotri_url, 'Smotri')
2005
2006         # Look for embedded Myvi.ru player
2007         myvi_url = MyviIE._extract_url(webpage)
2008         if myvi_url:
2009             return self.url_result(myvi_url)
2010
2011         # Look for embedded soundcloud player
2012         soundcloud_urls = SoundcloudIE._extract_urls(webpage)
2013         if soundcloud_urls:
2014             return _playlist_from_matches(soundcloud_urls, getter=unescapeHTML, ie=SoundcloudIE.ie_key())
2015
2016         # Look for embedded mtvservices player
2017         mtvservices_url = MTVServicesEmbeddedIE._extract_url(webpage)
2018         if mtvservices_url:
2019             return self.url_result(mtvservices_url, ie='MTVServicesEmbedded')
2020
2021         # Look for embedded yahoo player
2022         mobj = re.search(
2023             r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1',
2024             webpage)
2025         if mobj is not None:
2026             return self.url_result(mobj.group('url'), 'Yahoo')
2027
2028         # Look for embedded sbs.com.au player
2029         mobj = re.search(
2030             r'''(?x)
2031             (?:
2032                 <meta\s+property="og:video"\s+content=|
2033                 <iframe[^>]+?src=
2034             )
2035             (["\'])(?P<url>https?://(?:www\.)?sbs\.com\.au/ondemand/video/.+?)\1''',
2036             webpage)
2037         if mobj is not None:
2038             return self.url_result(mobj.group('url'), 'SBS')
2039
2040         # Look for embedded Cinchcast player
2041         mobj = re.search(
2042             r'<iframe[^>]+?src=(["\'])(?P<url>https?://player\.cinchcast\.com/.+?)\1',
2043             webpage)
2044         if mobj is not None:
2045             return self.url_result(mobj.group('url'), 'Cinchcast')
2046
2047         mobj = re.search(
2048             r'<iframe[^>]+?src=(["\'])(?P<url>https?://m(?:lb)?\.mlb\.com/shared/video/embed/embed\.html\?.+?)\1',
2049             webpage)
2050         if not mobj:
2051             mobj = re.search(
2052                 r'data-video-link=["\'](?P<url>http://m.mlb.com/video/[^"\']+)',
2053                 webpage)
2054         if mobj is not None:
2055             return self.url_result(mobj.group('url'), 'MLB')
2056
2057         mobj = re.search(
2058             r'<(?:iframe|script)[^>]+?src=(["\'])(?P<url>%s)\1' % CondeNastIE.EMBED_URL,
2059             webpage)
2060         if mobj is not None:
2061             return self.url_result(self._proto_relative_url(mobj.group('url'), scheme='http:'), 'CondeNast')
2062
2063         mobj = re.search(
2064             r'<iframe[^>]+src="(?P<url>https?://(?:new\.)?livestream\.com/[^"]+/player[^"]+)"',
2065             webpage)
2066         if mobj is not None:
2067             return self.url_result(mobj.group('url'), 'Livestream')
2068
2069         # Look for Zapiks embed
2070         mobj = re.search(
2071             r'<iframe[^>]+src="(?P<url>https?://(?:www\.)?zapiks\.fr/index\.php\?.+?)"', webpage)
2072         if mobj is not None:
2073             return self.url_result(mobj.group('url'), 'Zapiks')
2074
2075         # Look for Kaltura embeds
2076         kaltura_url = KalturaIE._extract_url(webpage)
2077         if kaltura_url:
2078             return self.url_result(smuggle_url(kaltura_url, {'source_url': url}), KalturaIE.ie_key())
2079
2080         # Look for Eagle.Platform embeds
2081         eagleplatform_url = EaglePlatformIE._extract_url(webpage)
2082         if eagleplatform_url:
2083             return self.url_result(eagleplatform_url, EaglePlatformIE.ie_key())
2084
2085         # Look for ClipYou (uses Eagle.Platform) embeds
2086         mobj = re.search(
2087             r'<iframe[^>]+src="https?://(?P<host>media\.clipyou\.ru)/index/player\?.*\brecord_id=(?P<id>\d+).*"', webpage)
2088         if mobj is not None:
2089             return self.url_result('eagleplatform:%(host)s:%(id)s' % mobj.groupdict(), 'EaglePlatform')
2090
2091         # Look for Pladform embeds
2092         pladform_url = PladformIE._extract_url(webpage)
2093         if pladform_url:
2094             return self.url_result(pladform_url)
2095
2096         # Look for Videomore embeds
2097         videomore_url = VideomoreIE._extract_url(webpage)
2098         if videomore_url:
2099             return self.url_result(videomore_url)
2100
2101         # Look for Playwire embeds
2102         mobj = re.search(
2103             r'<script[^>]+data-config=(["\'])(?P<url>(?:https?:)?//config\.playwire\.com/.+?)\1', webpage)
2104         if mobj is not None:
2105             return self.url_result(mobj.group('url'))
2106
2107         # Look for 5min embeds
2108         mobj = re.search(
2109             r'<meta[^>]+property="og:video"[^>]+content="https?://embed\.5min\.com/(?P<id>[0-9]+)/?', webpage)
2110         if mobj is not None:
2111             return self.url_result('5min:%s' % mobj.group('id'), 'FiveMin')
2112
2113         # Look for Crooks and Liars embeds
2114         mobj = re.search(
2115             r'<(?:iframe[^>]+src|param[^>]+value)=(["\'])(?P<url>(?:https?:)?//embed\.crooksandliars\.com/(?:embed|v)/.+?)\1', webpage)
2116         if mobj is not None:
2117             return self.url_result(mobj.group('url'))
2118
2119         # Look for NBC Sports VPlayer embeds
2120         nbc_sports_url = NBCSportsVPlayerIE._extract_url(webpage)
2121         if nbc_sports_url:
2122             return self.url_result(nbc_sports_url, 'NBCSportsVPlayer')
2123
2124         # Look for NBC News embeds
2125         nbc_news_embed_url = re.search(
2126             r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//www\.nbcnews\.com/widget/video-embed/[^"\']+)\1', webpage)
2127         if nbc_news_embed_url:
2128             return self.url_result(nbc_news_embed_url.group('url'), 'NBCNews')
2129
2130         # Look for Google Drive embeds
2131         google_drive_url = GoogleDriveIE._extract_url(webpage)
2132         if google_drive_url:
2133             return self.url_result(google_drive_url, 'GoogleDrive')
2134
2135         # Look for UDN embeds
2136         mobj = re.search(
2137             r'<iframe[^>]+src="(?P<url>%s)"' % UDNEmbedIE._PROTOCOL_RELATIVE_VALID_URL, webpage)
2138         if mobj is not None:
2139             return self.url_result(
2140                 compat_urlparse.urljoin(url, mobj.group('url')), 'UDNEmbed')
2141
2142         # Look for Senate ISVP iframe
2143         senate_isvp_url = SenateISVPIE._search_iframe_url(webpage)
2144         if senate_isvp_url:
2145             return self.url_result(senate_isvp_url, 'SenateISVP')
2146
2147         # Look for Dailymotion Cloud videos
2148         dmcloud_url = DailymotionCloudIE._extract_dmcloud_url(webpage)
2149         if dmcloud_url:
2150             return self.url_result(dmcloud_url, 'DailymotionCloud')
2151
2152         # Look for OnionStudios embeds
2153         onionstudios_url = OnionStudiosIE._extract_url(webpage)
2154         if onionstudios_url:
2155             return self.url_result(onionstudios_url)
2156
2157         # Look for ViewLift embeds
2158         viewlift_url = ViewLiftEmbedIE._extract_url(webpage)
2159         if viewlift_url:
2160             return self.url_result(viewlift_url)
2161
2162         # Look for JWPlatform embeds
2163         jwplatform_url = JWPlatformIE._extract_url(webpage)
2164         if jwplatform_url:
2165             return self.url_result(jwplatform_url, 'JWPlatform')
2166
2167         # Look for ScreenwaveMedia embeds
2168         mobj = re.search(ScreenwaveMediaIE.EMBED_PATTERN, webpage)
2169         if mobj is not None:
2170             return self.url_result(unescapeHTML(mobj.group('url')), 'ScreenwaveMedia')
2171
2172         # Look for Digiteka embeds
2173         digiteka_url = DigitekaIE._extract_url(webpage)
2174         if digiteka_url:
2175             return self.url_result(self._proto_relative_url(digiteka_url), DigitekaIE.ie_key())
2176
2177         # Look for Arkena embeds
2178         arkena_url = ArkenaIE._extract_url(webpage)
2179         if arkena_url:
2180             return self.url_result(arkena_url, ArkenaIE.ie_key())
2181
2182         # Look for Limelight embeds
2183         mobj = re.search(r'LimelightPlayer\.doLoad(Media|Channel|ChannelList)\(["\'](?P<id>[a-z0-9]{32})', webpage)
2184         if mobj:
2185             lm = {
2186                 'Media': 'media',
2187                 'Channel': 'channel',
2188                 'ChannelList': 'channel_list',
2189             }
2190             return self.url_result('limelight:%s:%s' % (
2191                 lm[mobj.group(1)], mobj.group(2)), 'Limelight%s' % mobj.group(1), mobj.group(2))
2192
2193         # Look for AdobeTVVideo embeds
2194         mobj = re.search(
2195             r'<iframe[^>]+src=[\'"]((?:https?:)?//video\.tv\.adobe\.com/v/\d+[^"]+)[\'"]',
2196             webpage)
2197         if mobj is not None:
2198             return self.url_result(
2199                 self._proto_relative_url(unescapeHTML(mobj.group(1))),
2200                 'AdobeTVVideo')
2201
2202         # Look for Vine embeds
2203         mobj = re.search(
2204             r'<iframe[^>]+src=[\'"]((?:https?:)?//(?:www\.)?vine\.co/v/[^/]+/embed/(?:simple|postcard))',
2205             webpage)
2206         if mobj is not None:
2207             return self.url_result(
2208                 self._proto_relative_url(unescapeHTML(mobj.group(1))), 'Vine')
2209
2210         # Look for VODPlatform embeds
2211         mobj = re.search(
2212             r'<iframe[^>]+src=[\'"]((?:https?:)?//(?:www\.)?vod-platform\.net/embed/[^/?#]+)',
2213             webpage)
2214         if mobj is not None:
2215             return self.url_result(
2216                 self._proto_relative_url(unescapeHTML(mobj.group(1))), 'VODPlatform')
2217
2218         # Look for Instagram embeds
2219         instagram_embed_url = InstagramIE._extract_embed_url(webpage)
2220         if instagram_embed_url is not None:
2221             return self.url_result(
2222                 self._proto_relative_url(instagram_embed_url), InstagramIE.ie_key())
2223
2224         # Look for LiveLeak embeds
2225         liveleak_url = LiveLeakIE._extract_url(webpage)
2226         if liveleak_url:
2227             return self.url_result(liveleak_url, 'LiveLeak')
2228
2229         # Look for 3Q SDN embeds
2230         threeqsdn_url = ThreeQSDNIE._extract_url(webpage)
2231         if threeqsdn_url:
2232             return {
2233                 '_type': 'url_transparent',
2234                 'ie_key': ThreeQSDNIE.ie_key(),
2235                 'url': self._proto_relative_url(threeqsdn_url),
2236                 'title': video_title,
2237                 'description': video_description,
2238                 'thumbnail': video_thumbnail,
2239                 'uploader': video_uploader,
2240             }
2241
2242         # Looking for http://schema.org/VideoObject
2243         json_ld = self._search_json_ld(
2244             webpage, video_id, default={}, expected_type='VideoObject')
2245         if json_ld.get('url'):
2246             info_dict.update({
2247                 'title': video_title or info_dict['title'],
2248                 'description': video_description,
2249                 'thumbnail': video_thumbnail,
2250                 'age_limit': age_limit
2251             })
2252             info_dict.update(json_ld)
2253             return info_dict
2254
2255         def check_video(vurl):
2256             if YoutubeIE.suitable(vurl):
2257                 return True
2258             vpath = compat_urlparse.urlparse(vurl).path
2259             vext = determine_ext(vpath)
2260             return '.' in vpath and vext not in ('swf', 'png', 'jpg', 'srt', 'sbv', 'sub', 'vtt', 'ttml')
2261
2262         def filter_video(urls):
2263             return list(filter(check_video, urls))
2264
2265         # Start with something easy: JW Player in SWFObject
2266         found = filter_video(re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage))
2267         if not found:
2268             # Look for gorilla-vid style embedding
2269             found = filter_video(re.findall(r'''(?sx)
2270                 (?:
2271                     jw_plugins|
2272                     JWPlayerOptions|
2273                     jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
2274                 )
2275                 .*?
2276                 ['"]?file['"]?\s*:\s*["\'](.*?)["\']''', webpage))
2277         if not found:
2278             # Broaden the search a little bit
2279             found = filter_video(re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage))
2280         if not found:
2281             # Broaden the findall a little bit: JWPlayer JS loader
2282             found = filter_video(re.findall(
2283                 r'[^A-Za-z0-9]?(?:file|video_url)["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage))
2284         if not found:
2285             # Flow player
2286             found = filter_video(re.findall(r'''(?xs)
2287                 flowplayer\("[^"]+",\s*
2288                     \{[^}]+?\}\s*,
2289                     \s*\{[^}]+? ["']?clip["']?\s*:\s*\{\s*
2290                         ["']?url["']?\s*:\s*["']([^"']+)["']
2291             ''', webpage))
2292         if not found:
2293             # Cinerama player
2294             found = re.findall(
2295                 r"cinerama\.embedPlayer\(\s*\'[^']+\',\s*'([^']+)'", webpage)
2296         if not found:
2297             # Try to find twitter cards info
2298             # twitter:player:stream should be checked before twitter:player since
2299             # it is expected to contain a raw stream (see
2300             # https://dev.twitter.com/cards/types/player#On_twitter.com_via_desktop_browser)
2301             found = filter_video(re.findall(
2302                 r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage))
2303         if not found:
2304             # We look for Open Graph info:
2305             # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
2306             m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
2307             # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
2308             if m_video_type is not None:
2309                 found = filter_video(re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage))
2310         if not found:
2311             # HTML5 video
2312             found = re.findall(r'(?s)<(?:video|audio)[^<]*(?:>.*?<source[^>]*)?\s+src=["\'](.*?)["\']', webpage)
2313         if not found:
2314             REDIRECT_REGEX = r'[0-9]{,2};\s*(?:URL|url)=\'?([^\'"]+)'
2315             found = re.search(
2316                 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
2317                 r'(?:[a-z-]+="[^"]+"\s+)*?content="%s' % REDIRECT_REGEX,
2318                 webpage)
2319             if not found:
2320                 # Look also in Refresh HTTP header
2321                 refresh_header = head_response.headers.get('Refresh')
2322                 if refresh_header:
2323                     # In python 2 response HTTP headers are bytestrings
2324                     if sys.version_info < (3, 0) and isinstance(refresh_header, str):
2325                         refresh_header = refresh_header.decode('iso-8859-1')
2326                     found = re.search(REDIRECT_REGEX, refresh_header)
2327             if found:
2328                 new_url = compat_urlparse.urljoin(url, unescapeHTML(found.group(1)))
2329                 self.report_following_redirect(new_url)
2330                 return {
2331                     '_type': 'url',
2332                     'url': new_url,
2333                 }
2334
2335         if not found:
2336             # twitter:player is a https URL to iframe player that may or may not
2337             # be supported by youtube-dl thus this is checked the very last (see
2338             # https://dev.twitter.com/cards/types/player#On_twitter.com_via_desktop_browser)
2339             embed_url = self._html_search_meta('twitter:player', webpage, default=None)
2340             if embed_url:
2341                 return self.url_result(embed_url)
2342
2343         if not found:
2344             raise UnsupportedError(url)
2345
2346         entries = []
2347         for video_url in orderedSet(found):
2348             video_url = unescapeHTML(video_url)
2349             video_url = video_url.replace('\\/', '/')
2350             video_url = compat_urlparse.urljoin(url, video_url)
2351             video_id = compat_urllib_parse_unquote(os.path.basename(video_url))
2352
2353             # Sometimes, jwplayer extraction will result in a YouTube URL
2354             if YoutubeIE.suitable(video_url):
2355                 entries.append(self.url_result(video_url, 'Youtube'))
2356                 continue
2357
2358             # here's a fun little line of code for you:
2359             video_id = os.path.splitext(video_id)[0]
2360
2361             entry_info_dict = {
2362                 'id': video_id,
2363                 'uploader': video_uploader,
2364                 'title': video_title,
2365                 'age_limit': age_limit,
2366             }
2367
2368             ext = determine_ext(video_url)
2369             if ext == 'smil':
2370                 entry_info_dict['formats'] = self._extract_smil_formats(video_url, video_id)
2371             elif ext == 'xspf':
2372                 return self.playlist_result(self._extract_xspf_playlist(video_url, video_id), video_id)
2373             elif ext == 'm3u8':
2374                 entry_info_dict['formats'] = self._extract_m3u8_formats(video_url, video_id, ext='mp4')
2375             elif ext == 'mpd':
2376                 entry_info_dict['formats'] = self._extract_mpd_formats(video_url, video_id)
2377             elif ext == 'f4m':
2378                 entry_info_dict['formats'] = self._extract_f4m_formats(video_url, video_id)
2379             else:
2380                 entry_info_dict['url'] = video_url
2381
2382             if entry_info_dict.get('formats'):
2383                 self._sort_formats(entry_info_dict['formats'])
2384
2385             entries.append(entry_info_dict)
2386
2387         if len(entries) == 1:
2388             return entries[0]
2389         else:
2390             for num, e in enumerate(entries, start=1):
2391                 # 'url' results don't have a title
2392                 if e.get('title') is not None:
2393                     e['title'] = '%s (%d)' % (e['title'], num)
2394             return {
2395                 '_type': 'playlist',
2396                 'entries': entries,
2397             }