2
0

generic.py 120 KB

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