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