generic.py 99 KB

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