2
0

generic.py 84 KB

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