3 from __future__ import unicode_literals
8 from .common import InfoExtractor
9 from .youtube import YoutubeIE
10 from ..compat import (
12 compat_urllib_parse_unquote,
13 compat_urllib_request,
15 compat_xml_parse_error,
33 from .brightcove import BrightcoveIE
34 from .nbc import NBCSportsVPlayerIE
35 from .ooyala import OoyalaIE
36 from .rutv import RUTVIE
37 from .tvc import TVCIE
38 from .sportbox import SportBoxEmbedIE
39 from .smotri import SmotriIE
40 from .condenast import CondeNastIE
41 from .udn import UDNEmbedIE
42 from .senateisvp import SenateISVPIE
43 from .bliptv import BlipTVIE
44 from .svt import SVTIE
45 from .pornhub import PornHubIE
46 from .xhamster import XHamsterEmbedIE
47 from .vimeo import VimeoIE
48 from .dailymotion import DailymotionCloudIE
51 class GenericIE(InfoExtractor):
52 IE_DESC = 'Generic downloader that works on some sites'
56 # Direct link to a video
58 'url': 'http://media.w3.org/2010/05/sintel/trailer.mp4',
59 'md5': '67d406c2bcb6af27fa886f31aa934bbe',
64 'upload_date': '20100513',
67 # Direct link to media delivered compressed (until Accept-Encoding is *)
69 'url': 'http://calimero.tk/muzik/FictionJunction-Parallel_Hearts.flac',
70 'md5': '128c42e68b13950268b648275386fc74',
72 'id': 'FictionJunction-Parallel_Hearts',
74 'title': 'FictionJunction-Parallel_Hearts',
75 'upload_date': '20140522',
77 'expected_warnings': [
78 'URL could be a direct video link, returning it as such.'
81 # Direct download with broken HEAD
83 'url': 'http://ai-radio.org:8000/radio.opus',
90 'skip_download': True, # infinite live stream
92 'expected_warnings': [
93 r'501.*Not Implemented'
96 # Direct link with incorrect MIME type
98 'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
99 'md5': '4ccbebe5f36706d85221f204d7eb5913',
101 'url': 'http://ftp.nluug.nl/video/nluug/2014-11-20_nj14/zaal-2/5_Lennart_Poettering_-_Systemd.webm',
102 'id': '5_Lennart_Poettering_-_Systemd',
104 'title': '5_Lennart_Poettering_-_Systemd',
105 'upload_date': '20141120',
107 'expected_warnings': [
108 'URL could be a direct video link, returning it as such.'
113 'url': 'http://phihag.de/2014/youtube-dl/rss2.xml',
115 'id': 'http://phihag.de/2014/youtube-dl/rss2.xml',
116 'title': 'Zero Punctuation',
117 'description': 're:.*groundbreaking video review series.*'
119 'playlist_mincount': 11,
121 # RSS feed with enclosure
123 'url': 'http://podcastfeeds.nbcnews.com/audio/podcast/MSNBC-MADDOW-NETCAST-M4V.xml',
125 'id': 'pdv_maddow_netcast_m4v-02-27-2015-201624',
127 'upload_date': '20150228',
128 'title': 'pdv_maddow_netcast_m4v-02-27-2015-201624',
133 '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',
137 'upload_date': '20130224',
138 'uploader_id': 'TheVerge',
139 'description': 're:^Chris Ziegler takes a look at the\.*',
140 'uploader': 'The Verge',
141 'title': 'First Firefox OS phones side-by-side',
144 'skip_download': False,
148 'url': 'http://www.hodiho.fr/2013/02/regis-plante-sa-jeep.html',
149 'md5': '85b90ccc9d73b4acd9138d3af4c27f89',
151 'id': '13601338388002',
153 'uploader': 'www.hodiho.fr',
154 'title': 'R\u00e9gis plante sa Jeep',
157 # bandcamp page with custom domain
159 'add_ie': ['Bandcamp'],
160 'url': 'http://bronyrock.com/track/the-pony-mash',
164 'title': 'The Pony Mash',
165 'uploader': 'M_Pallante',
167 'skip': 'There is a limit of 200 free downloads / month for the test song',
169 # embedded brightcove video
170 # it also tests brightcove videos that need to set the 'Referer' in the
173 'add_ie': ['Brightcove'],
174 'url': 'http://www.bfmtv.com/video/bfmbusiness/cours-bourse/cours-bourse-l-analyse-technique-154522/',
176 'id': '2765128793001',
178 'title': 'Le cours de bourse : l’analyse technique',
179 'description': 'md5:7e9ad046e968cb2d1114004aba466fd9',
180 'uploader': 'BFM BUSINESS',
183 'skip_download': True,
187 # https://github.com/rg3/youtube-dl/issues/2253
188 'url': 'http://bcove.me/i6nfkrc3',
189 'md5': '0ba9446db037002366bab3b3eb30c88c',
191 'id': '3101154703001',
193 'title': 'Still no power',
194 'uploader': 'thestar.com',
195 '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.',
197 'add_ie': ['Brightcove'],
200 'url': 'http://www.championat.com/video/football/v/87/87499.html',
201 'md5': 'fb973ecf6e4a78a67453647444222983',
203 'id': '3414141473001',
205 'title': 'Видео. Удаление Дзагоева (ЦСКА)',
206 'description': 'Онлайн-трансляция матча ЦСКА - "Волга"',
207 'uploader': 'Championat',
211 # https://github.com/rg3/youtube-dl/issues/3541
212 'add_ie': ['Brightcove'],
213 'url': 'http://www.kijk.nl/sbs6/leermijvrouwenkennen/videos/jqMiXKAYan2S/aflevering-1',
215 'id': '3866516442001',
217 'title': 'Leer mij vrouwen kennen: Aflevering 1',
218 'description': 'Leer mij vrouwen kennen: Aflevering 1',
219 'uploader': 'SBS Broadcasting',
221 'skip': 'Restricted to Netherlands',
223 'skip_download': True, # m3u8 download
228 'url': 'http://www.rollingstone.com/music/videos/norwegian-dj-cashmere-cat-goes-spartan-on-with-me-premiere-20131219',
229 'md5': '166dd577b433b4d4ebfee10b0824d8ff',
231 'id': 'BwY2RxaTrTkslxOfcan0UCf0YqyvWysJ',
233 'title': '2cc213299525360.mov', # that's what we get
235 'add_ie': ['Ooyala'],
237 # multiple ooyala embeds on SBN network websites
239 'url': 'http://www.sbnation.com/college-football-recruiting/2015/2/3/7970291/national-signing-day-rationalizations-itll-be-ok-itll-be-ok',
241 'id': 'national-signing-day-rationalizations-itll-be-ok-itll-be-ok',
242 'title': '25 lies you will tell yourself on National Signing Day - SBNation.com',
244 'playlist_mincount': 3,
246 'skip_download': True,
248 'add_ie': ['Ooyala'],
252 'url': 'http://www.tested.com/science/weird/460206-tested-grinding-coffee-2000-frames-second/',
256 'title': 'Tested: Grinding Coffee at 2000 Frames Per Second',
257 'upload_date': '20140225',
258 'description': 'md5:06a40fbf30b220468f1e0957c0f558ff',
259 'uploader': 'Tested',
260 'uploader_id': 'testedcom',
262 # No need to test YoutubeIE here
264 'skip_download': True,
269 'url': 'http://www.theguardian.com/world/2014/mar/11/obama-zach-galifianakis-between-two-ferns',
273 'title': 'Between Two Ferns with Zach Galifianakis: President Barack Obama',
274 'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',
279 'url': 'http://www.bbc.co.uk/blogs/adamcurtis/posts/BUGGER',
281 'title': 'BBC - Blogs - Adam Curtis - BUGGER',
283 'playlist_mincount': 18,
287 'url': 'http://www.rg.ru/2014/03/15/reg-dfo/anklav-anons.html',
291 'title': 'Охотское море стало целиком российским',
292 'description': 'md5:5ed62483b14663e2a95ebbe115eb8f43',
296 'skip_download': True,
301 '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/',
305 'title': 'Дошкольное воспитание',
310 'url': 'http://www.vestifinance.ru/articles/25753',
313 'title': 'Вести Экономика ― Прямые трансляции с Форума-выставки "Госзаказ-2013"',
318 'title': 'Госзаказ. День 3',
324 'title': 'Госзаказ. День 2',
330 'title': 'Госзаказ. День 1',
336 'skip_download': True,
341 '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',
344 'title': '[NSFL] [FM15] which pumiscer was this ( vid ) ( alfa as fuck srx )',
346 'playlist_mincount': 7,
350 'url': 'http://en.support.wordpress.com/videos/ted-talks/',
351 'md5': '65fdff94098e4a607385a60c5177c638',
355 'title': 'Hidden miracles of the natural world',
356 'uploader': 'Louie Schwartzberg',
357 'description': 'md5:8145d19d320ff3e52f28401f4c4283b9',
360 # Embeded Ustream video
362 'url': 'http://www.american.edu/spa/pti/nsa-privacy-janus-2014.cfm',
363 'md5': '27b99cdb639c9b12a79bca876a073417',
367 'uploader': 'AU SPA: The NSA and Privacy',
368 'title': 'NSA and Privacy Forum Debate featuring General Hayden and Barton Gellman'
371 # nowvideo embed hidden behind percent encoding
373 'url': 'http://www.waoanime.tv/the-super-dimension-fortress-macross-episode-1/',
374 'md5': '2baf4ddd70f697d94b1c18cf796d5107',
376 'id': '06e53103ca9aa',
378 'title': 'Macross Episode 001 Watch Macross Episode 001 onl',
379 'description': 'No description',
384 'url': 'http://www.tv-replay.fr/redirection/20-03-14/x-enius-arte-10753389.html',
385 'md5': '7653032cbb25bf6c80d80f217055fa43',
387 'id': '048195-004_PLUS7-F',
390 'description': 'md5:d5fdf32ef6613cdbfd516ae658abf168',
391 'upload_date': '20140320',
394 'skip_download': 'Requires rtmpdump'
399 'url': 'http://www.wired.com/2014/04/honda-asimo/',
400 'md5': 'ba0dfe966fa007657bd1443ee672db0f',
402 'id': '53501be369702d3275860000',
404 'title': 'Honda’s New Asimo Robot Is More Human Than Ever',
409 'url': 'http://www.spi0n.com/zap-spi0n-com-n216/',
410 'md5': '441aeeb82eb72c422c7f14ec533999cd',
412 'id': 'k2mm4bCdJ6CQ2i7c8o2',
414 'title': 'Le Zap de Spi0n n°216 - Zapping du Web',
417 'add_ie': ['Dailymotion'],
421 'url': 'http://www.badzine.de/ansicht/datum/2014/06/09/so-funktioniert-die-neue-englische-badminton-liga.html',
425 'title': 'The NBL Auction 2014',
426 'uploader': 'BADMINTON England',
427 'uploader_id': 'BADMINTONEvents',
428 'upload_date': '20140603',
429 'description': 'md5:9ef128a69f1e262a700ed83edb163a73',
431 'add_ie': ['Youtube'],
433 'skip_download': True,
438 'url': 'http://www.gametrailers.com/news-post/76093/north-america-europe-is-getting-that-mario-kart-8-mercedes-dlc-too',
439 'md5': '35727f82f58c76d996fc188f9755b0d5',
441 'id': '0306a69b-8adf-4fb5-aace-75f8e8cbfca9',
444 'description': 'Mario\'s life in the fast lane has never looked so good.',
447 # YouTube embed via <data-embed-url="">
449 'url': 'https://play.google.com/store/apps/details?id=com.gameloft.android.ANMP.GloftA8HM',
453 'title': 'Asphalt 8: Airborne - Update - Welcome to Dubai!',
454 'uploader': 'Gameloft',
455 'uploader_id': 'gameloft',
456 'upload_date': '20140828',
457 'description': 'md5:c80da9ed3d83ae6d1876c834de03e1c4',
460 'skip_download': True,
465 'url': 'http://www.ll.mit.edu/workshops/education/videocourses/antennas/lecture1/video/',
467 'md5': '0c5e352edabf715d762b0ad4e6d9ee67',
469 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
470 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - video1',
475 'md5': '10e4bb3aaca9fd630e273ff92d9f3c63',
477 'id': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final_PIP',
478 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final - pip',
484 'title': 'Fenn-AA_PA_Radar_Course_Lecture_1c_Final',
489 'url': 'http://www.handjobhub.com/video/busty-blonde-siri-tit-fuck-while-wank-6313.html',
490 'md5': '9d65602bf31c6e20014319c7d07fba27',
492 'id': '5123ea6d5e5a7',
495 'uploader': 'www.handjobhub.com',
496 'title': 'Busty Blonde Siri Tit Fuck While Wank at HandjobHub.com',
499 # Multiple brightcove videos
500 # https://github.com/rg3/youtube-dl/issues/2283
502 'url': 'http://www.newyorker.com/online/blogs/newsdesk/2014/01/always-never-nuclear-command-and-control.html',
504 'id': 'always-never',
505 'title': 'Always / Never - The New Yorker',
509 'extract_flat': False,
510 'skip_download': True,
515 'url': 'http://umpire-empire.com/index.php/topic/58125-laz-decides-no-thats-low/',
516 'md5': '96f09a37e44da40dd083e12d9a683327',
520 'title': 'Ump changes call to ball',
521 'description': 'md5:71c11215384298a172a6dcb4c2e20685',
523 'timestamp': 1401537900,
524 'upload_date': '20140531',
525 'thumbnail': 're:^https?://.*\.jpg$',
530 'url': 'http://education-portal.com/academy/lesson/north-american-exploration-failed-colonies-of-spain-france-england.html#lesson',
531 'md5': '8788b683c777a5cf25621eaf286d0c23',
535 'title': 'md5:51364a8d3d009997ba99656004b5e20d',
537 'filesize': 182808282,
538 'uploader': 'education-portal.com',
542 'url': 'http://thoughtworks.wistia.com/medias/uxjb0lwrcz',
543 'md5': 'baf49c2baa8a7de5f3fc145a8506dcd4',
547 'title': 'Conversation about Hexagonal Rails Part 1 - ThoughtWorks',
549 'uploader': 'thoughtworks.wistia.com',
554 'url': 'http://nakedsecurity.sophos.com/2014/10/29/sscc-171-are-you-sure-that-1234-is-a-bad-password-podcast/',
558 'description': 'md5:ff867d6b555488ad3c52572bb33d432c',
559 'uploader': 'Sophos Security',
560 'title': 'Chet Chat 171 - Oct 29, 2014',
561 'upload_date': '20141029',
566 'url': 'http://www.esa.int/Our_Activities/Space_Science/Rosetta/Philae_comet_touch-down_webcast',
570 'upload_date': '20141112',
571 'title': 'Rosetta #CometLanding webcast HL 10',
576 'url': 'http://discourse.ubuntu.com/t/unity-8-desktop-mode-windows-on-mir/1986',
579 'title': 'Unity 8 desktop-mode windows on Mir! - Ubuntu Discourse',
581 'playlist_mincount': 2,
585 'url': 'http://undergroundwellness.com/podcasts/306-5-steps-to-permanent-gut-healing/',
589 'upload_date': '20141126',
590 'title': 'Jack Tips: 5 Steps to Permanent Gut Healing',
595 'url': 'http://www.abc.net.au/7.30/content/2015/s4164797.htm',
597 'id': '730m_DandD_1901_512k',
599 'uploader': 'www.abc.net.au',
600 'title': 'Game of Thrones with dice - Dungeons and Dragons fantasy role-playing game gets new life - 19/01/2015',
603 # embedded viddler video
605 'url': 'http://deadspin.com/i-cant-stop-watching-john-wall-chop-the-nuggets-with-th-1681801597',
609 'uploader': 'deadspin',
610 'title': 'WALL-TO-GORTAT',
611 'timestamp': 1422285291,
612 'upload_date': '20150126',
614 'add_ie': ['Viddler'],
618 'url': 'http://thedailyshow.cc.com/podcast/episodetwelve',
622 'title': "The Daily Show Podcast without Jon Stewart - Episode 12: Bassem Youssef: Egypt's Jon Stewart",
623 'description': 'md5:601cb790edd05908957dae8aaa866465',
624 'upload_date': '20150220',
629 'url': 'http://media.nationalarchives.gov.uk/index.php/webinar-using-discovery-national-archives-online-catalogue/',
633 'upload_date': '20150212',
634 'uploader': 'The National Archives UK',
635 'description': 'md5:a236581cd2449dd2df4f93412f3f01c6',
636 'uploader_id': 'NationalArchives08',
637 'title': 'Webinar: Using Discovery, The National Archives’ online catalogue',
642 'url': 'http://www.rtlnieuws.nl/nieuws/buitenland/aanslagen-kopenhagen',
643 'playlist_mincount': 5,
645 'id': 'aanslagen-kopenhagen',
646 'title': 'Aanslagen Kopenhagen | RTL Nieuws',
651 'url': 'http://www.skipass.com/news/116090-bon-appetit-s5ep3-baqueira-mi-cor.html',
655 'title': 'EP3S5 - Bon Appétit - Baqueira Mi Corazon !',
660 'url': 'http://www.monumentalnetwork.com/videos/john-carlson-postgame-2-25-15',
664 'upload_date': '20150226',
665 'uploader_id': 'MonumentalSports-Kaltura@perfectsensedigital.com',
667 'title': 'John Carlson Postgame 2/25/15',
670 # Eagle.Platform embed (generic URL)
672 'url': 'http://lenta.ru/news/2015/03/06/navalny/',
676 'title': 'Навальный вышел на свободу',
677 'description': 'md5:d97861ac9ae77377f3f20eaf9d04b4f5',
678 'thumbnail': 're:^https?://.*\.jpg$',
684 # ClipYou (Eagle.Platform) embed (custom URL)
686 'url': 'http://muz-tv.ru/play/7129/',
690 'title': "'O Sole Mio",
691 'thumbnail': 're:^https?://.*\.jpg$',
698 'url': 'http://muz-tv.ru/kinozal/view/7400/',
702 'title': 'Тайны перевала Дятлова • 1 серия 2 часть',
703 'description': 'Документальный сериал-расследование одной из самых жутких тайн ХХ века',
704 'thumbnail': 're:^https?://.*\.jpg$',
711 'url': 'http://www.cinemablend.com/new/First-Joe-Dirt-2-Trailer-Teaser-Stupid-Greatness-70874.html',
715 'title': 'Joe Dirt 2 Beautiful Loser Teaser Trailer',
716 'thumbnail': 're:^https?://.*\.png$',
722 'url': 'http://techcrunch.com/video/facebook-creates-on-this-day-crunch-report/518726732/',
723 'md5': '4c6f127a30736b59b3e2c19234ee2bf7',
727 'title': 'Facebook Creates "On This Day" | Crunch Report',
732 'url': 'http://www.svt.se/sport/ishockey/jagr-tacklar-giroux-under-intervjun',
736 'title': 'Här trycker Jagr till Giroux (under SVT-intervjun)',
741 # Crooks and Liars embed
743 'url': 'http://crooksandliars.com/2015/04/fox-friends-says-protecting-atheists',
747 'title': "Fox & Friends Says Protecting Atheists From Discrimination Is Anti-Christian!",
748 'description': 'md5:e1a46ad1650e3a5ec7196d432799127f',
749 'timestamp': 1428207000,
750 'upload_date': '20150405',
751 'uploader': 'Heather',
754 # Crooks and Liars external embed
756 'url': 'http://theothermccain.com/2010/02/02/video-proves-that-bill-kristol-has-been-watching-glenn-beck/comment-page-1/',
758 'id': 'MTE3MjUtMzQ2MzA',
760 'title': 'md5:5e3662a81a4014d24c250d76d41a08d5',
761 'description': 'md5:9b8e9542d6c3c5de42d6451b7d780cec',
762 'timestamp': 1265032391,
763 'upload_date': '20100201',
764 'uploader': 'Heather',
767 # NBC Sports vplayer embed
769 'url': 'http://www.riderfans.com/forum/showthread.php?121827-Freeman&s=e98fa1ea6dc08e886b1678d35212494a',
771 'id': 'ln7x1qSThw4k',
773 'title': "PFT Live: New leader in the 'new-look' defense",
774 'description': 'md5:65a19b4bbfb3b0c0c5768bed1dfad74e',
779 'url': 'http://www.udn.com/news/story/7314/822787',
780 'md5': 'fd2060e988c326991037b9aff9df21a6',
784 'title': '中一中男師變性 全校師生力挺',
785 'thumbnail': 're:^https?://.*\.jpg$',
790 'url': 'http://www.businessinsider.com/excel-index-match-vlookup-video-how-to-2015-2?IR=T',
792 'id': '50YnY4czr4ms1vJ7yz3xzq0excz_pUMs',
794 'description': 'VIDEO: Index/Match versus VLOOKUP.',
795 'title': 'This is what separates the Excel masters from the wannabes',
799 'skip_download': True,
802 # Contains a SMIL manifest
804 'url': 'http://www.telewebion.com/fa/1263668/%D9%82%D8%B1%D8%B9%D9%87%E2%80%8C%DA%A9%D8%B4%DB%8C-%D9%84%DB%8C%DA%AF-%D9%82%D9%87%D8%B1%D9%85%D8%A7%D9%86%D8%A7%D9%86-%D8%A7%D8%B1%D9%88%D9%BE%D8%A7/%2B-%D9%81%D9%88%D8%AA%D8%A8%D8%A7%D9%84.html',
808 'title': '+ Football: Lottery Champions League Europe',
809 'uploader': 'www.telewebion.com',
813 'skip_download': True,
816 # Brightcove URL in single quotes
818 'url': 'http://www.sportsnet.ca/baseball/mlb/sn-presents-russell-martin-world-citizen/',
819 'md5': '4ae374f1f8b91c889c4b9203c8c752af',
821 'id': '4255764656001',
823 'title': 'SN Presents: Russell Martin, World Citizen',
824 '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.',
825 'uploader': 'Rogers Sportsnet',
828 # Dailymotion Cloud video
830 'url': 'http://replay.publicsenat.fr/vod/le-debat/florent-kolandjian,dominique-cena,axel-decourtye,laurence-abeille,bruno-parmentier/175910',
831 'md5': '49444254273501a64675a7e68c502681',
833 'id': '5585de919473990de4bee11b',
836 'thumbnail': 're:^https?://.*\.jpe?g$',
841 'url': 'https://helpx.adobe.com/acrobat/how-to/new-experience-acrobat-dc.html?set=acrobat--get-started--essential-beginners',
842 'md5': '43662b577c018ad707a63766462b1e87',
846 'title': 'New experience with Acrobat DC',
847 'description': 'New experience with Acrobat DC',
853 def report_following_redirect(self, new_url):
854 """Report information extraction."""
855 self._downloader.to_screen('[redirect] Following redirect to %s' % new_url)
857 def _extract_rss(self, url, video_id, doc):
858 playlist_title = doc.find('./channel/title').text
859 playlist_desc_el = doc.find('./channel/description')
860 playlist_desc = None if playlist_desc_el is None else playlist_desc_el.text
863 for it in doc.findall('./channel/item'):
864 next_url = xpath_text(it, 'link', fatal=False)
866 enclosure_nodes = it.findall('./enclosure')
867 for e in enclosure_nodes:
868 next_url = e.attrib.get('url')
878 'title': it.find('title').text,
884 'title': playlist_title,
885 'description': playlist_desc,
889 def _extract_camtasia(self, url, video_id, webpage):
890 """ Returns None if no camtasia video can be found. """
892 camtasia_cfg = self._search_regex(
893 r'fo\.addVariable\(\s*"csConfigFile",\s*"([^"]+)"\s*\);',
894 webpage, 'camtasia configuration file', default=None)
895 if camtasia_cfg is None:
898 title = self._html_search_meta('DC.title', webpage, fatal=True)
900 camtasia_url = compat_urlparse.urljoin(url, camtasia_cfg)
901 camtasia_cfg = self._download_xml(
902 camtasia_url, video_id,
903 note='Downloading camtasia configuration',
904 errnote='Failed to download camtasia configuration')
905 fileset_node = camtasia_cfg.find('./playlist/array/fileset')
908 for n in fileset_node.getchildren():
909 url_n = n.find('./uri')
914 'id': os.path.splitext(url_n.text.rpartition('/')[2])[0],
915 'title': '%s - %s' % (title, n.tag),
916 'url': compat_urlparse.urljoin(url, url_n.text),
917 'duration': float_or_none(n.find('./duration').text),
926 def _real_extract(self, url):
927 if url.startswith('//'):
930 'url': self.http_scheme() + url,
933 parsed_url = compat_urlparse.urlparse(url)
934 if not parsed_url.scheme:
935 default_search = self._downloader.params.get('default_search')
936 if default_search is None:
937 default_search = 'fixup_error'
939 if default_search in ('auto', 'auto_warning', 'fixup_error'):
941 self._downloader.report_warning('The url doesn\'t specify the protocol, trying with http')
942 return self.url_result('http://' + url)
943 elif default_search != 'fixup_error':
944 if default_search == 'auto_warning':
945 if re.match(r'^(?:url|URL)$', url):
946 raise ExtractorError(
947 'Invalid URL: %r . Call youtube-dl like this: youtube-dl -v "https://www.youtube.com/watch?v=BaW_jenozKc" ' % url,
950 self._downloader.report_warning(
951 'Falling back to youtube search for %s . Set --default-search "auto" to suppress this warning.' % url)
952 return self.url_result('ytsearch:' + url)
954 if default_search in ('error', 'fixup_error'):
955 raise ExtractorError(
956 '%r is not a valid URL. '
957 'Set --default-search "ytsearch" (or run youtube-dl "ytsearch:%s" ) to search YouTube'
958 % (url, url), expected=True)
960 if ':' not in default_search:
961 default_search += ':'
962 return self.url_result(default_search + url)
964 url, smuggled_data = unsmuggle_url(url)
966 is_intentional = smuggled_data and smuggled_data.get('to_generic')
967 if smuggled_data and 'force_videoid' in smuggled_data:
968 force_videoid = smuggled_data['force_videoid']
969 video_id = force_videoid
971 video_id = compat_urllib_parse_unquote(os.path.splitext(url.rstrip('/').split('/')[-1])[0])
973 self.to_screen('%s: Requesting header' % video_id)
975 head_req = HEADRequest(url)
976 head_response = self._request_webpage(
978 note=False, errnote='Could not send HEAD request to %s' % url,
981 if head_response is not False:
983 new_url = head_response.geturl()
985 self.report_following_redirect(new_url)
987 new_url = smuggle_url(
988 new_url, {'force_videoid': force_videoid})
989 return self.url_result(new_url)
992 if head_response is False:
993 request = compat_urllib_request.Request(url)
994 request.add_header('Accept-Encoding', '*')
995 full_response = self._request_webpage(request, video_id)
996 head_response = full_response
998 # Check for direct link to a video
999 content_type = head_response.headers.get('Content-Type', '')
1000 m = re.match(r'^(?P<type>audio|video|application(?=/ogg$))/(?P<format_id>.+)$', content_type)
1002 upload_date = unified_strdate(
1003 head_response.headers.get('Last-Modified'))
1006 'title': compat_urllib_parse_unquote(os.path.splitext(url_basename(url))[0]),
1009 'format_id': m.group('format_id'),
1011 'vcodec': 'none' if m.group('type') == 'audio' else None
1013 'upload_date': upload_date,
1016 if not self._downloader.params.get('test', False) and not is_intentional:
1017 self._downloader.report_warning('Falling back on generic information extractor.')
1019 if not full_response:
1020 request = compat_urllib_request.Request(url)
1021 # Some webservers may serve compressed content of rather big size (e.g. gzipped flac)
1022 # making it impossible to download only chunk of the file (yet we need only 512kB to
1023 # test whether it's HTML or not). According to youtube-dl default Accept-Encoding
1024 # that will always result in downloading the whole file that is not desirable.
1025 # Therefore for extraction pass we have to override Accept-Encoding to any in order
1026 # to accept raw bytes and being able to download only a chunk.
1027 # It may probably better to solve this by checking Content-Type for application/octet-stream
1028 # after HEAD request finishes, but not sure if we can rely on this.
1029 request.add_header('Accept-Encoding', '*')
1030 full_response = self._request_webpage(request, video_id)
1032 # Maybe it's a direct link to a video?
1033 # Be careful not to download the whole thing!
1034 first_bytes = full_response.read(512)
1035 if not is_html(first_bytes):
1036 self._downloader.report_warning(
1037 'URL could be a direct video link, returning it as such.')
1038 upload_date = unified_strdate(
1039 head_response.headers.get('Last-Modified'))
1042 'title': compat_urllib_parse_unquote(os.path.splitext(url_basename(url))[0]),
1045 'upload_date': upload_date,
1048 webpage = self._webpage_read_content(
1049 full_response, url, video_id, prefix=first_bytes)
1051 self.report_extraction(video_id)
1053 # Is it an RSS feed?
1055 doc = parse_xml(webpage)
1056 if doc.tag == 'rss':
1057 return self._extract_rss(url, video_id, doc)
1058 except compat_xml_parse_error:
1061 # Is it a Camtasia project?
1062 camtasia_res = self._extract_camtasia(url, video_id, webpage)
1063 if camtasia_res is not None:
1066 # Sometimes embedded video player is hidden behind percent encoding
1067 # (e.g. https://github.com/rg3/youtube-dl/issues/2448)
1068 # Unescaping the whole page allows to handle those cases in a generic way
1069 webpage = compat_urllib_parse.unquote(webpage)
1071 # it's tempting to parse this further, but you would
1072 # have to take into account all the variations like
1073 # Video Title - Site Name
1074 # Site Name | Video Title
1075 # Video Title - Tagline | Site Name
1076 # and so on and so forth; it's just not practical
1077 video_title = self._html_search_regex(
1078 r'(?s)<title>(.*?)</title>', webpage, 'video title',
1081 # Try to detect age limit automatically
1082 age_limit = self._rta_search(webpage)
1083 # And then there are the jokers who advertise that they use RTA,
1084 # but actually don't.
1085 AGE_LIMIT_MARKERS = [
1086 r'Proudly Labeled <a href="http://www.rtalabel.org/" title="Restricted to Adults">RTA</a>',
1088 if any(re.search(marker, webpage) for marker in AGE_LIMIT_MARKERS):
1091 # video uploader is domain name
1092 video_uploader = self._search_regex(
1093 r'^(?:https?://)?([^/]*)/.*', url, 'video uploader')
1096 def _playlist_from_matches(matches, getter=None, ie=None):
1098 self.url_result(self._proto_relative_url(getter(m) if getter else m), ie)
1100 return self.playlist_result(
1101 urlrs, playlist_id=video_id, playlist_title=video_title)
1103 # Look for BrightCove:
1104 bc_urls = BrightcoveIE._extract_brightcove_urls(webpage)
1106 self.to_screen('Brightcove video detected.')
1109 'url': smuggle_url(bc_url, {'Referer': url}),
1110 'ie_key': 'Brightcove'
1111 } for bc_url in bc_urls]
1114 '_type': 'playlist',
1115 'title': video_title,
1120 # Look for embedded rtl.nl player
1121 matches = re.findall(
1122 r'<iframe[^>]+?src="((?:https?:)?//(?:www\.)?rtl\.nl/system/videoplayer/[^"]+(?:video_)?embed[^"]+)"',
1125 return _playlist_from_matches(matches, ie='RtlNl')
1127 vimeo_url = VimeoIE._extract_vimeo_url(url, webpage)
1128 if vimeo_url is not None:
1129 return self.url_result(vimeo_url)
1131 # Look for embedded YouTube player
1132 matches = re.findall(r'''(?x)
1141 (?P<url>(?:https?:)?//(?:www\.)?youtube(?:-nocookie)?\.com/
1145 return _playlist_from_matches(
1146 matches, lambda m: unescapeHTML(m[1]))
1148 # Look for lazyYT YouTube embed
1149 matches = re.findall(
1150 r'class="lazyYT" data-youtube-id="([^"]+)"', webpage)
1152 return _playlist_from_matches(matches, lambda m: unescapeHTML(m))
1154 # Look for embedded Dailymotion player
1155 matches = re.findall(
1156 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.com/embed/video/.+?)\1', webpage)
1158 return _playlist_from_matches(
1159 matches, lambda m: unescapeHTML(m[1]))
1161 # Look for embedded Dailymotion playlist player (#3822)
1163 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:www\.)?dailymotion\.[a-z]{2,3}/widget/jukebox\?.+?)\1', webpage)
1165 playlists = re.findall(
1166 r'list\[\]=/playlist/([^/]+)/', unescapeHTML(m.group('url')))
1168 return _playlist_from_matches(
1169 playlists, lambda p: '//dailymotion.com/playlist/%s' % p)
1171 # Look for embedded Wistia player
1173 r'<(?:meta[^>]+?content|iframe[^>]+?src)=(["\'])(?P<url>(?:https?:)?//(?:fast\.)?wistia\.net/embed/iframe/.+?)\1', webpage)
1175 embed_url = self._proto_relative_url(
1176 unescapeHTML(match.group('url')))
1178 '_type': 'url_transparent',
1181 'uploader': video_uploader,
1182 'title': video_title,
1186 match = re.search(r'(?:id=["\']wistia_|data-wistia-?id=["\']|Wistia\.embed\(["\'])(?P<id>[^"\']+)', webpage)
1189 '_type': 'url_transparent',
1190 'url': 'http://fast.wistia.net/embed/iframe/{0:}'.format(match.group('id')),
1192 'uploader': video_uploader,
1193 'title': video_title,
1194 'id': match.group('id')
1197 # Look for embedded blip.tv player
1198 bliptv_url = BlipTVIE._extract_url(webpage)
1200 return self.url_result(bliptv_url, 'BlipTV')
1202 # Look for SVT player
1203 svt_url = SVTIE._extract_url(webpage)
1205 return self.url_result(svt_url, 'SVT')
1207 # Look for embedded condenast player
1208 matches = re.findall(
1209 r'<iframe\s+(?:[a-zA-Z-]+="[^"]+"\s+)*?src="(https?://player\.cnevids\.com/embed/[^"]+")',
1213 '_type': 'playlist',
1216 'ie_key': 'CondeNast',
1218 } for ma in matches],
1219 'title': video_title,
1223 # Look for Bandcamp pages with custom domain
1224 mobj = re.search(r'<meta property="og:url"[^>]*?content="(.*?bandcamp\.com.*?)"', webpage)
1225 if mobj is not None:
1226 burl = unescapeHTML(mobj.group(1))
1227 # Don't set the extractor because it can be a track url or an album
1228 return self.url_result(burl)
1230 # Look for embedded Vevo player
1232 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//(?:cache\.)?vevo\.com/.+?)\1', webpage)
1233 if mobj is not None:
1234 return self.url_result(mobj.group('url'))
1236 # Look for embedded Viddler player
1238 r'<(?:iframe[^>]+?src|param[^>]+?value)=(["\'])(?P<url>(?:https?:)?//(?:www\.)?viddler\.com/(?:embed|player)/.+?)\1',
1240 if mobj is not None:
1241 return self.url_result(mobj.group('url'))
1243 # Look for NYTimes player
1245 r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//graphics8\.nytimes\.com/bcvideo/[^/]+/iframe/embed\.html.+?)\1>',
1247 if mobj is not None:
1248 return self.url_result(mobj.group('url'))
1250 # Look for Libsyn player
1252 r'<iframe[^>]+src=(["\'])(?P<url>(?:https?:)?//html5-player\.libsyn\.com/embed/.+?)\1', webpage)
1253 if mobj is not None:
1254 return self.url_result(mobj.group('url'))
1256 # Look for Ooyala videos
1257 mobj = (re.search(r'player\.ooyala\.com/[^"?]+\?[^"]*?(?:embedCode|ec)=(?P<ec>[^"&]+)', webpage) or
1258 re.search(r'OO\.Player\.create\([\'"].*?[\'"],\s*[\'"](?P<ec>.{32})[\'"]', webpage) or
1259 re.search(r'SBN\.VideoLinkset\.ooyala\([\'"](?P<ec>.{32})[\'"]\)', webpage) or
1260 re.search(r'data-ooyala-video-id\s*=\s*[\'"](?P<ec>.{32})[\'"]', webpage))
1261 if mobj is not None:
1262 return OoyalaIE._build_url_result(mobj.group('ec'))
1264 # Look for multiple Ooyala embeds on SBN network websites
1265 mobj = re.search(r'SBN\.VideoLinkset\.entryGroup\((\[.*?\])', webpage)
1266 if mobj is not None:
1267 embeds = self._parse_json(mobj.group(1), video_id, fatal=False)
1269 return _playlist_from_matches(
1270 embeds, getter=lambda v: OoyalaIE._url_for_embed_code(v['provider_video_id']), ie='Ooyala')
1272 # Look for Aparat videos
1273 mobj = re.search(r'<iframe .*?src="(http://www\.aparat\.com/video/[^"]+)"', webpage)
1274 if mobj is not None:
1275 return self.url_result(mobj.group(1), 'Aparat')
1277 # Look for MPORA videos
1278 mobj = re.search(r'<iframe .*?src="(http://mpora\.(?:com|de)/videos/[^"]+)"', webpage)
1279 if mobj is not None:
1280 return self.url_result(mobj.group(1), 'Mpora')
1282 # Look for embedded NovaMov-based player
1284 r'''(?x)<(?:pagespeed_)?iframe[^>]+?src=(["\'])
1285 (?P<url>http://(?:(?:embed|www)\.)?
1287 nowvideo\.(?:ch|sx|eu|at|ag|co)|
1288 videoweed\.(?:es|com)|
1289 movshare\.(?:net|sx|ag)|
1290 divxstage\.(?:eu|net|ch|co|at|ag))
1291 /embed\.php.+?)\1''', webpage)
1292 if mobj is not None:
1293 return self.url_result(mobj.group('url'))
1295 # Look for embedded Facebook player
1297 r'<iframe[^>]+?src=(["\'])(?P<url>https://www\.facebook\.com/video/embed.+?)\1', webpage)
1298 if mobj is not None:
1299 return self.url_result(mobj.group('url'), 'Facebook')
1301 # Look for embedded VK player
1302 mobj = re.search(r'<iframe[^>]+?src=(["\'])(?P<url>https?://vk\.com/video_ext\.php.+?)\1', webpage)
1303 if mobj is not None:
1304 return self.url_result(mobj.group('url'), 'VK')
1306 # Look for embedded ivi player
1307 mobj = re.search(r'<embed[^>]+?src=(["\'])(?P<url>https?://(?:www\.)?ivi\.ru/video/player.+?)\1', webpage)
1308 if mobj is not None:
1309 return self.url_result(mobj.group('url'), 'Ivi')
1311 # Look for embedded Huffington Post player
1313 r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed\.live\.huffingtonpost\.com/.+?)\1', webpage)
1314 if mobj is not None:
1315 return self.url_result(mobj.group('url'), 'HuffPost')
1318 mobj = re.search(r'class=["\']embedly-card["\'][^>]href=["\'](?P<url>[^"\']+)', webpage)
1319 if mobj is not None:
1320 return self.url_result(mobj.group('url'))
1321 mobj = re.search(r'class=["\']embedly-embed["\'][^>]src=["\'][^"\']*url=(?P<url>[^&]+)', webpage)
1322 if mobj is not None:
1323 return self.url_result(compat_urllib_parse.unquote(mobj.group('url')))
1325 # Look for funnyordie embed
1326 matches = re.findall(r'<iframe[^>]+?src="(https?://(?:www\.)?funnyordie\.com/embed/[^"]+)"', webpage)
1328 return _playlist_from_matches(
1329 matches, getter=unescapeHTML, ie='FunnyOrDie')
1331 # Look for BBC iPlayer embed
1332 matches = re.findall(r'setPlaylist\("(https?://www\.bbc\.co\.uk/iplayer/[^/]+/[\da-z]{8})"\)', webpage)
1334 return _playlist_from_matches(matches, ie='BBCCoUk')
1336 # Look for embedded RUTV player
1337 rutv_url = RUTVIE._extract_url(webpage)
1339 return self.url_result(rutv_url, 'RUTV')
1341 # Look for embedded TVC player
1342 tvc_url = TVCIE._extract_url(webpage)
1344 return self.url_result(tvc_url, 'TVC')
1346 # Look for embedded SportBox player
1347 sportbox_urls = SportBoxEmbedIE._extract_urls(webpage)
1349 return _playlist_from_matches(sportbox_urls, ie='SportBoxEmbed')
1351 # Look for embedded PornHub player
1352 pornhub_url = PornHubIE._extract_url(webpage)
1354 return self.url_result(pornhub_url, 'PornHub')
1356 # Look for embedded XHamster player
1357 xhamster_urls = XHamsterEmbedIE._extract_urls(webpage)
1359 return _playlist_from_matches(xhamster_urls, ie='XHamsterEmbed')
1361 # Look for embedded Tvigle player
1363 r'<iframe[^>]+?src=(["\'])(?P<url>(?:https?:)?//cloud\.tvigle\.ru/video/.+?)\1', webpage)
1364 if mobj is not None:
1365 return self.url_result(mobj.group('url'), 'Tvigle')
1367 # Look for embedded TED player
1369 r'<iframe[^>]+?src=(["\'])(?P<url>https?://embed(?:-ssl)?\.ted\.com/.+?)\1', webpage)
1370 if mobj is not None:
1371 return self.url_result(mobj.group('url'), 'TED')
1373 # Look for embedded Ustream videos
1375 r'<iframe[^>]+?src=(["\'])(?P<url>http://www\.ustream\.tv/embed/.+?)\1', webpage)
1376 if mobj is not None:
1377 return self.url_result(mobj.group('url'), 'Ustream')
1379 # Look for embedded arte.tv player
1381 r'<script [^>]*?src="(?P<url>http://www\.arte\.tv/playerv2/embed[^"]+)"',
1383 if mobj is not None:
1384 return self.url_result(mobj.group('url'), 'ArteTVEmbed')
1386 # Look for embedded smotri.com player
1387 smotri_url = SmotriIE._extract_url(webpage)
1389 return self.url_result(smotri_url, 'Smotri')
1391 # Look for embeded soundcloud player
1393 r'<iframe\s+(?:[a-zA-Z0-9_-]+="[^"]+"\s+)*src="(?P<url>https?://(?:w\.)?soundcloud\.com/player[^"]+)"',
1395 if mobj is not None:
1396 url = unescapeHTML(mobj.group('url'))
1397 return self.url_result(url)
1399 # Look for embedded vulture.com player
1401 r'<iframe src="(?P<url>https?://video\.vulture\.com/[^"]+)"',
1403 if mobj is not None:
1404 url = unescapeHTML(mobj.group('url'))
1405 return self.url_result(url, ie='Vulture')
1407 # Look for embedded mtvservices player
1409 r'<iframe src="(?P<url>https?://media\.mtvnservices\.com/embed/[^"]+)"',
1411 if mobj is not None:
1412 url = unescapeHTML(mobj.group('url'))
1413 return self.url_result(url, ie='MTVServicesEmbedded')
1415 # Look for embedded yahoo player
1417 r'<iframe[^>]+?src=(["\'])(?P<url>https?://(?:screen|movies)\.yahoo\.com/.+?\.html\?format=embed)\1',
1419 if mobj is not None:
1420 return self.url_result(mobj.group('url'), 'Yahoo')
1422 # Look for embedded sbs.com.au player
1426 <meta\s+property="og:video"\s+content=|
1429 (["\'])(?P<url>https?://(?:www\.)?sbs\.com\.au/ondemand/video/.+?)\1''',
1431 if mobj is not None:
1432 return self.url_result(mobj.group('url'), 'SBS')
1434 # Look for embedded Cinchcast player
1436 r'<iframe[^>]+?src=(["\'])(?P<url>https?://player\.cinchcast\.com/.+?)\1',
1438 if mobj is not None:
1439 return self.url_result(mobj.group('url'), 'Cinchcast')
1442 r'<iframe[^>]+?src=(["\'])(?P<url>https?://m(?:lb)?\.mlb\.com/shared/video/embed/embed\.html\?.+?)\1',
1446 r'data-video-link=["\'](?P<url>http://m.mlb.com/video/[^"\']+)',
1448 if mobj is not None:
1449 return self.url_result(mobj.group('url'), 'MLB')
1452 r'<iframe[^>]+?src=(["\'])(?P<url>%s)\1' % CondeNastIE.EMBED_URL,
1454 if mobj is not None:
1455 return self.url_result(self._proto_relative_url(mobj.group('url'), scheme='http:'), 'CondeNast')
1458 r'<iframe[^>]+src="(?P<url>https?://new\.livestream\.com/[^"]+/player[^"]+)"',
1460 if mobj is not None:
1461 return self.url_result(mobj.group('url'), 'Livestream')
1463 # Look for Zapiks embed
1465 r'<iframe[^>]+src="(?P<url>https?://(?:www\.)?zapiks\.fr/index\.php\?.+?)"', webpage)
1466 if mobj is not None:
1467 return self.url_result(mobj.group('url'), 'Zapiks')
1469 # Look for Kaltura embeds
1471 r"(?s)kWidget\.(?:thumb)?[Ee]mbed\(\{.*?'wid'\s*:\s*'_?(?P<partner_id>[^']+)',.*?'entry_id'\s*:\s*'(?P<id>[^']+)',", webpage)
1472 if mobj is not None:
1473 return self.url_result('kaltura:%(partner_id)s:%(id)s' % mobj.groupdict(), 'Kaltura')
1475 # Look for Eagle.Platform embeds
1477 r'<iframe[^>]+src="(?P<url>https?://.+?\.media\.eagleplatform\.com/index/player\?.+?)"', webpage)
1478 if mobj is not None:
1479 return self.url_result(mobj.group('url'), 'EaglePlatform')
1481 # Look for ClipYou (uses Eagle.Platform) embeds
1483 r'<iframe[^>]+src="https?://(?P<host>media\.clipyou\.ru)/index/player\?.*\brecord_id=(?P<id>\d+).*"', webpage)
1484 if mobj is not None:
1485 return self.url_result('eagleplatform:%(host)s:%(id)s' % mobj.groupdict(), 'EaglePlatform')
1487 # Look for Pladform embeds
1489 r'<iframe[^>]+src="(?P<url>https?://out\.pladform\.ru/player\?.+?)"', webpage)
1490 if mobj is not None:
1491 return self.url_result(mobj.group('url'), 'Pladform')
1493 # Look for Playwire embeds
1495 r'<script[^>]+data-config=(["\'])(?P<url>(?:https?:)?//config\.playwire\.com/.+?)\1', webpage)
1496 if mobj is not None:
1497 return self.url_result(mobj.group('url'))
1499 # Look for 5min embeds
1501 r'<meta[^>]+property="og:video"[^>]+content="https?://embed\.5min\.com/(?P<id>[0-9]+)/?', webpage)
1502 if mobj is not None:
1503 return self.url_result('5min:%s' % mobj.group('id'), 'FiveMin')
1505 # Look for Crooks and Liars embeds
1507 r'<(?:iframe[^>]+src|param[^>]+value)=(["\'])(?P<url>(?:https?:)?//embed\.crooksandliars\.com/(?:embed|v)/.+?)\1', webpage)
1508 if mobj is not None:
1509 return self.url_result(mobj.group('url'))
1511 # Look for NBC Sports VPlayer embeds
1512 nbc_sports_url = NBCSportsVPlayerIE._extract_url(webpage)
1514 return self.url_result(nbc_sports_url, 'NBCSportsVPlayer')
1516 # Look for UDN embeds
1518 r'<iframe[^>]+src="(?P<url>%s)"' % UDNEmbedIE._VALID_URL, webpage)
1519 if mobj is not None:
1520 return self.url_result(
1521 compat_urlparse.urljoin(url, mobj.group('url')), 'UDNEmbed')
1523 # Look for Senate ISVP iframe
1524 senate_isvp_url = SenateISVPIE._search_iframe_url(webpage)
1526 return self.url_result(senate_isvp_url, 'SenateISVP')
1528 # Look for Dailymotion Cloud videos
1529 dmcloud_url = DailymotionCloudIE._extract_dmcloud_url(webpage)
1531 return self.url_result(dmcloud_url, 'DailymotionCloud')
1533 # Look for AdobeTVVideo embeds
1535 r'<iframe[^>]+src=[\'"]((?:https?:)?//video\.tv\.adobe\.com/v/\d+[^"]+)[\'"]',
1537 if mobj is not None:
1538 return self.url_result(
1539 self._proto_relative_url(unescapeHTML(mobj.group(1))),
1542 def check_video(vurl):
1543 if YoutubeIE.suitable(vurl):
1545 vpath = compat_urlparse.urlparse(vurl).path
1546 vext = determine_ext(vpath)
1547 return '.' in vpath and vext not in ('swf', 'png', 'jpg', 'srt', 'sbv', 'sub', 'vtt', 'ttml')
1549 def filter_video(urls):
1550 return list(filter(check_video, urls))
1552 # Start with something easy: JW Player in SWFObject
1553 found = filter_video(re.findall(r'flashvars: [\'"](?:.*&)?file=(http[^\'"&]*)', webpage))
1555 # Look for gorilla-vid style embedding
1556 found = filter_video(re.findall(r'''(?sx)
1560 jwplayer\s*\(\s*["'][^'"]+["']\s*\)\s*\.setup
1563 ['"]?file['"]?\s*:\s*["\'](.*?)["\']''', webpage))
1565 # Broaden the search a little bit
1566 found = filter_video(re.findall(r'[^A-Za-z0-9]?(?:file|source)=(http[^\'"&]*)', webpage))
1568 # Broaden the findall a little bit: JWPlayer JS loader
1569 found = filter_video(re.findall(
1570 r'[^A-Za-z0-9]?file["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage))
1573 found = filter_video(re.findall(r'''(?xs)
1574 flowplayer\("[^"]+",\s*
1576 \s*\{[^}]+? ["']?clip["']?\s*:\s*\{\s*
1577 ["']?url["']?\s*:\s*["']([^"']+)["']
1582 r"cinerama\.embedPlayer\(\s*\'[^']+\',\s*'([^']+)'", webpage)
1584 # Try to find twitter cards info
1585 found = filter_video(re.findall(
1586 r'<meta (?:property|name)="twitter:player:stream" (?:content|value)="(.+?)"', webpage))
1588 # We look for Open Graph info:
1589 # We have to match any number spaces between elements, some sites try to align them (eg.: statigr.am)
1590 m_video_type = re.findall(r'<meta.*?property="og:video:type".*?content="video/(.*?)"', webpage)
1591 # We only look in og:video if the MIME type is a video, don't try if it's a Flash player:
1592 if m_video_type is not None:
1593 found = filter_video(re.findall(r'<meta.*?property="og:video".*?content="(.*?)"', webpage))
1596 found = re.findall(r'(?s)<video[^<]*(?:>.*?<source[^>]*)?\s+src=["\'](.*?)["\']', webpage)
1598 REDIRECT_REGEX = r'[0-9]{,2};\s*(?:URL|url)=\'?([^\'"]+)'
1600 r'(?i)<meta\s+(?=(?:[a-z-]+="[^"]+"\s+)*http-equiv="refresh")'
1601 r'(?:[a-z-]+="[^"]+"\s+)*?content="%s' % REDIRECT_REGEX,
1604 # Look also in Refresh HTTP header
1605 refresh_header = head_response.headers.get('Refresh')
1607 found = re.search(REDIRECT_REGEX, refresh_header)
1609 new_url = compat_urlparse.urljoin(url, found.group(1))
1610 self.report_following_redirect(new_url)
1616 raise UnsupportedError(url)
1619 for video_url in found:
1620 video_url = compat_urlparse.urljoin(url, video_url)
1621 video_id = compat_urllib_parse.unquote(os.path.basename(video_url))
1623 # Sometimes, jwplayer extraction will result in a YouTube URL
1624 if YoutubeIE.suitable(video_url):
1625 entries.append(self.url_result(video_url, 'Youtube'))
1628 # here's a fun little line of code for you:
1629 video_id = os.path.splitext(video_id)[0]
1631 if determine_ext(video_url) == 'smil':
1634 'formats': self._extract_smil_formats(video_url, video_id),
1635 'uploader': video_uploader,
1636 'title': video_title,
1637 'age_limit': age_limit,
1643 'uploader': video_uploader,
1644 'title': video_title,
1645 'age_limit': age_limit,
1648 if len(entries) == 1:
1651 for num, e in enumerate(entries, start=1):
1652 # 'url' results don't have a title
1653 if e.get('title') is not None:
1654 e['title'] = '%s (%d)' % (e['title'], num)
1656 '_type': 'playlist',