generic.py 95 KB

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