generic.py 121 KB

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