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