youtube.py 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167
  1. # coding: utf-8
  2. import json
  3. import netrc
  4. import re
  5. import socket
  6. import itertools
  7. from .common import InfoExtractor, SearchInfoExtractor
  8. from ..utils import (
  9. compat_http_client,
  10. compat_parse_qs,
  11. compat_urllib_error,
  12. compat_urllib_parse,
  13. compat_urllib_request,
  14. compat_str,
  15. clean_html,
  16. get_element_by_id,
  17. ExtractorError,
  18. unescapeHTML,
  19. unified_strdate,
  20. orderedSet,
  21. )
  22. class YoutubeBaseInfoExtractor(InfoExtractor):
  23. """Provide base functions for Youtube extractors"""
  24. _LOGIN_URL = 'https://accounts.google.com/ServiceLogin'
  25. _LANG_URL = r'https://www.youtube.com/?hl=en&persist_hl=1&gl=US&persist_gl=1&opt_out_ackd=1'
  26. _AGE_URL = 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
  27. _NETRC_MACHINE = 'youtube'
  28. # If True it will raise an error if no login info is provided
  29. _LOGIN_REQUIRED = False
  30. def report_lang(self):
  31. """Report attempt to set language."""
  32. self.to_screen(u'Setting language')
  33. def _set_language(self):
  34. request = compat_urllib_request.Request(self._LANG_URL)
  35. try:
  36. self.report_lang()
  37. compat_urllib_request.urlopen(request).read()
  38. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  39. self._downloader.report_warning(u'unable to set language: %s' % compat_str(err))
  40. return False
  41. return True
  42. def _login(self):
  43. (username, password) = self._get_login_info()
  44. # No authentication to be performed
  45. if username is None:
  46. if self._LOGIN_REQUIRED:
  47. raise ExtractorError(u'No login info available, needed for using %s.' % self.IE_NAME, expected=True)
  48. return False
  49. request = compat_urllib_request.Request(self._LOGIN_URL)
  50. try:
  51. login_page = compat_urllib_request.urlopen(request).read().decode('utf-8')
  52. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  53. self._downloader.report_warning(u'unable to fetch login page: %s' % compat_str(err))
  54. return False
  55. galx = None
  56. dsh = None
  57. match = re.search(re.compile(r'<input.+?name="GALX".+?value="(.+?)"', re.DOTALL), login_page)
  58. if match:
  59. galx = match.group(1)
  60. match = re.search(re.compile(r'<input.+?name="dsh".+?value="(.+?)"', re.DOTALL), login_page)
  61. if match:
  62. dsh = match.group(1)
  63. # Log in
  64. login_form_strs = {
  65. u'continue': u'https://www.youtube.com/signin?action_handle_signin=true&feature=sign_in_button&hl=en_US&nomobiletemp=1',
  66. u'Email': username,
  67. u'GALX': galx,
  68. u'Passwd': password,
  69. u'PersistentCookie': u'yes',
  70. u'_utf8': u'霱',
  71. u'bgresponse': u'js_disabled',
  72. u'checkConnection': u'',
  73. u'checkedDomains': u'youtube',
  74. u'dnConn': u'',
  75. u'dsh': dsh,
  76. u'pstMsg': u'0',
  77. u'rmShown': u'1',
  78. u'secTok': u'',
  79. u'signIn': u'Sign in',
  80. u'timeStmp': u'',
  81. u'service': u'youtube',
  82. u'uilel': u'3',
  83. u'hl': u'en_US',
  84. }
  85. # Convert to UTF-8 *before* urlencode because Python 2.x's urlencode
  86. # chokes on unicode
  87. login_form = dict((k.encode('utf-8'), v.encode('utf-8')) for k,v in login_form_strs.items())
  88. login_data = compat_urllib_parse.urlencode(login_form).encode('ascii')
  89. request = compat_urllib_request.Request(self._LOGIN_URL, login_data)
  90. try:
  91. self.report_login()
  92. login_results = compat_urllib_request.urlopen(request).read().decode('utf-8')
  93. if re.search(r'(?i)<form[^>]* id="gaia_loginform"', login_results) is not None:
  94. self._downloader.report_warning(u'unable to log in: bad username or password')
  95. return False
  96. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  97. self._downloader.report_warning(u'unable to log in: %s' % compat_str(err))
  98. return False
  99. return True
  100. def _confirm_age(self):
  101. age_form = {
  102. 'next_url': '/',
  103. 'action_confirm': 'Confirm',
  104. }
  105. request = compat_urllib_request.Request(self._AGE_URL, compat_urllib_parse.urlencode(age_form))
  106. try:
  107. self.report_age_confirmation()
  108. compat_urllib_request.urlopen(request).read().decode('utf-8')
  109. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  110. raise ExtractorError(u'Unable to confirm age: %s' % compat_str(err))
  111. return True
  112. def _real_initialize(self):
  113. if self._downloader is None:
  114. return
  115. if not self._set_language():
  116. return
  117. if not self._login():
  118. return
  119. self._confirm_age()
  120. class YoutubeIE(YoutubeBaseInfoExtractor):
  121. IE_DESC = u'YouTube.com'
  122. _VALID_URL = r"""^
  123. (
  124. (?:https?://)? # http(s):// (optional)
  125. (?:youtu\.be/|(?:\w+\.)?youtube(?:-nocookie)?\.com/|
  126. tube\.majestyc\.net/) # the various hostnames, with wildcard subdomains
  127. (?:.*?\#/)? # handle anchor (#/) redirect urls
  128. (?: # the various things that can precede the ID:
  129. (?:(?:v|embed|e)/) # v/ or embed/ or e/
  130. |(?: # or the v= param in all its forms
  131. (?:(?:watch|movie)(?:_popup)?(?:\.php)?)? # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
  132. (?:\?|\#!?) # the params delimiter ? or # or #!
  133. (?:.*?&)? # any other preceding param (like /?s=tuff&v=xxxx)
  134. v=
  135. )
  136. )? # optional -> youtube.com/xxxx is OK
  137. )? # all until now is optional -> you can pass the naked ID
  138. ([0-9A-Za-z_-]+) # here is it! the YouTube video ID
  139. (?(1).+)? # if we found the ID, everything can follow
  140. $"""
  141. _NEXT_URL_RE = r'[\?&]next_url=([^&]+)'
  142. # Listed in order of quality
  143. _available_formats = ['38', '37', '46', '22', '45', '35', '44', '34', '18', '43', '6', '5', '17', '13',
  144. '95', '94', '93', '92', '132', '151',
  145. # 3D
  146. '85', '84', '102', '83', '101', '82', '100',
  147. # Dash video
  148. '138', '137', '248', '136', '247', '135', '246',
  149. '245', '244', '134', '243', '133', '242', '160',
  150. # Dash audio
  151. '141', '172', '140', '171', '139',
  152. ]
  153. _available_formats_prefer_free = ['38', '46', '37', '45', '22', '44', '35', '43', '34', '18', '6', '5', '17', '13',
  154. '95', '94', '93', '92', '132', '151',
  155. '85', '102', '84', '101', '83', '100', '82',
  156. # Dash video
  157. '138', '248', '137', '247', '136', '246', '245',
  158. '244', '135', '243', '134', '242', '133', '160',
  159. # Dash audio
  160. '172', '141', '171', '140', '139',
  161. ]
  162. _video_extensions = {
  163. '13': '3gp',
  164. '17': 'mp4',
  165. '18': 'mp4',
  166. '22': 'mp4',
  167. '37': 'mp4',
  168. '38': 'mp4',
  169. '43': 'webm',
  170. '44': 'webm',
  171. '45': 'webm',
  172. '46': 'webm',
  173. # 3d videos
  174. '82': 'mp4',
  175. '83': 'mp4',
  176. '84': 'mp4',
  177. '85': 'mp4',
  178. '100': 'webm',
  179. '101': 'webm',
  180. '102': 'webm',
  181. # videos that use m3u8
  182. '92': 'mp4',
  183. '93': 'mp4',
  184. '94': 'mp4',
  185. '95': 'mp4',
  186. '96': 'mp4',
  187. '132': 'mp4',
  188. '151': 'mp4',
  189. # Dash mp4
  190. '133': 'mp4',
  191. '134': 'mp4',
  192. '135': 'mp4',
  193. '136': 'mp4',
  194. '137': 'mp4',
  195. '138': 'mp4',
  196. '139': 'mp4',
  197. '140': 'mp4',
  198. '141': 'mp4',
  199. '160': 'mp4',
  200. # Dash webm
  201. '171': 'webm',
  202. '172': 'webm',
  203. '242': 'webm',
  204. '243': 'webm',
  205. '244': 'webm',
  206. '245': 'webm',
  207. '246': 'webm',
  208. '247': 'webm',
  209. '248': 'webm',
  210. }
  211. _video_dimensions = {
  212. '5': '240x400',
  213. '6': '???',
  214. '13': '???',
  215. '17': '144x176',
  216. '18': '360x640',
  217. '22': '720x1280',
  218. '34': '360x640',
  219. '35': '480x854',
  220. '37': '1080x1920',
  221. '38': '3072x4096',
  222. '43': '360x640',
  223. '44': '480x854',
  224. '45': '720x1280',
  225. '46': '1080x1920',
  226. '82': '360p',
  227. '83': '480p',
  228. '84': '720p',
  229. '85': '1080p',
  230. '92': '240p',
  231. '93': '360p',
  232. '94': '480p',
  233. '95': '720p',
  234. '96': '1080p',
  235. '100': '360p',
  236. '101': '480p',
  237. '102': '720p',
  238. '132': '240p',
  239. '151': '72p',
  240. '133': '240p',
  241. '134': '360p',
  242. '135': '480p',
  243. '136': '720p',
  244. '137': '1080p',
  245. '138': '>1080p',
  246. '139': '48k',
  247. '140': '128k',
  248. '141': '256k',
  249. '160': '192p',
  250. '171': '128k',
  251. '172': '256k',
  252. '242': '240p',
  253. '243': '360p',
  254. '244': '480p',
  255. '245': '480p',
  256. '246': '480p',
  257. '247': '720p',
  258. '248': '1080p',
  259. }
  260. _special_itags = {
  261. '82': '3D',
  262. '83': '3D',
  263. '84': '3D',
  264. '85': '3D',
  265. '100': '3D',
  266. '101': '3D',
  267. '102': '3D',
  268. '133': 'DASH Video',
  269. '134': 'DASH Video',
  270. '135': 'DASH Video',
  271. '136': 'DASH Video',
  272. '137': 'DASH Video',
  273. '138': 'DASH Video',
  274. '139': 'DASH Audio',
  275. '140': 'DASH Audio',
  276. '141': 'DASH Audio',
  277. '160': 'DASH Video',
  278. '171': 'DASH Audio',
  279. '172': 'DASH Audio',
  280. '242': 'DASH Video',
  281. '243': 'DASH Video',
  282. '244': 'DASH Video',
  283. '245': 'DASH Video',
  284. '246': 'DASH Video',
  285. '247': 'DASH Video',
  286. '248': 'DASH Video',
  287. }
  288. IE_NAME = u'youtube'
  289. _TESTS = [
  290. {
  291. u"url": u"http://www.youtube.com/watch?v=BaW_jenozKc",
  292. u"file": u"BaW_jenozKc.mp4",
  293. u"info_dict": {
  294. u"title": u"youtube-dl test video \"'/\\ä↭𝕐",
  295. u"uploader": u"Philipp Hagemeister",
  296. u"uploader_id": u"phihag",
  297. u"upload_date": u"20121002",
  298. u"description": u"test chars: \"'/\\ä↭𝕐\n\nThis is a test video for youtube-dl.\n\nFor more information, contact phihag@phihag.de ."
  299. }
  300. },
  301. {
  302. u"url": u"http://www.youtube.com/watch?v=1ltcDfZMA3U",
  303. u"file": u"1ltcDfZMA3U.flv",
  304. u"note": u"Test VEVO video (#897)",
  305. u"info_dict": {
  306. u"upload_date": u"20070518",
  307. u"title": u"Maps - It Will Find You",
  308. u"description": u"Music video by Maps performing It Will Find You.",
  309. u"uploader": u"MuteUSA",
  310. u"uploader_id": u"MuteUSA"
  311. }
  312. },
  313. {
  314. u"url": u"http://www.youtube.com/watch?v=UxxajLWwzqY",
  315. u"file": u"UxxajLWwzqY.mp4",
  316. u"note": u"Test generic use_cipher_signature video (#897)",
  317. u"info_dict": {
  318. u"upload_date": u"20120506",
  319. u"title": u"Icona Pop - I Love It (feat. Charli XCX) [OFFICIAL VIDEO]",
  320. u"description": u"md5:b085c9804f5ab69f4adea963a2dceb3c",
  321. u"uploader": u"Icona Pop",
  322. u"uploader_id": u"IconaPop"
  323. }
  324. },
  325. {
  326. u"url": u"https://www.youtube.com/watch?v=07FYdnEawAQ",
  327. u"file": u"07FYdnEawAQ.mp4",
  328. u"note": u"Test VEVO video with age protection (#956)",
  329. u"info_dict": {
  330. u"upload_date": u"20130703",
  331. u"title": u"Justin Timberlake - Tunnel Vision (Explicit)",
  332. u"description": u"md5:64249768eec3bc4276236606ea996373",
  333. u"uploader": u"justintimberlakeVEVO",
  334. u"uploader_id": u"justintimberlakeVEVO"
  335. }
  336. },
  337. {
  338. u'url': u'https://www.youtube.com/watch?v=TGi3HqYrWHE',
  339. u'file': u'TGi3HqYrWHE.mp4',
  340. u'note': u'm3u8 video',
  341. u'info_dict': {
  342. u'title': u'Triathlon - Men - London 2012 Olympic Games',
  343. u'description': u'- Men - TR02 - Triathlon - 07 August 2012 - London 2012 Olympic Games',
  344. u'uploader': u'olympic',
  345. u'upload_date': u'20120807',
  346. u'uploader_id': u'olympic',
  347. },
  348. u'params': {
  349. u'skip_download': True,
  350. },
  351. },
  352. ]
  353. @classmethod
  354. def suitable(cls, url):
  355. """Receives a URL and returns True if suitable for this IE."""
  356. if YoutubePlaylistIE.suitable(url) or YoutubeSubscriptionsIE.suitable(url): return False
  357. return re.match(cls._VALID_URL, url, re.VERBOSE) is not None
  358. def report_video_webpage_download(self, video_id):
  359. """Report attempt to download video webpage."""
  360. self.to_screen(u'%s: Downloading video webpage' % video_id)
  361. def report_video_info_webpage_download(self, video_id):
  362. """Report attempt to download video info webpage."""
  363. self.to_screen(u'%s: Downloading video info webpage' % video_id)
  364. def report_video_subtitles_download(self, video_id):
  365. """Report attempt to download video info webpage."""
  366. self.to_screen(u'%s: Checking available subtitles' % video_id)
  367. def report_video_subtitles_request(self, video_id, sub_lang, format):
  368. """Report attempt to download video info webpage."""
  369. self.to_screen(u'%s: Downloading video subtitles for %s.%s' % (video_id, sub_lang, format))
  370. def report_video_subtitles_available(self, video_id, sub_lang_list):
  371. """Report available subtitles."""
  372. sub_lang = ",".join(list(sub_lang_list.keys()))
  373. self.to_screen(u'%s: Available subtitles for video: %s' % (video_id, sub_lang))
  374. def report_information_extraction(self, video_id):
  375. """Report attempt to extract video information."""
  376. self.to_screen(u'%s: Extracting video information' % video_id)
  377. def report_unavailable_format(self, video_id, format):
  378. """Report extracted video URL."""
  379. self.to_screen(u'%s: Format %s not available' % (video_id, format))
  380. def report_rtmp_download(self):
  381. """Indicate the download will use the RTMP protocol."""
  382. self.to_screen(u'RTMP download detected')
  383. def _decrypt_signature(self, s):
  384. """Turn the encrypted s field into a working signature"""
  385. if len(s) == 92:
  386. return s[25] + s[3:25] + s[0] + s[26:42] + s[79] + s[43:79] + s[91] + s[80:83]
  387. elif len(s) == 90:
  388. return s[25] + s[3:25] + s[2] + s[26:40] + s[77] + s[41:77] + s[89] + s[78:81]
  389. elif len(s) == 89:
  390. return s[84:78:-1] + s[87] + s[77:60:-1] + s[0] + s[59:3:-1]
  391. elif len(s) == 88:
  392. return s[48] + s[81:67:-1] + s[82] + s[66:62:-1] + s[85] + s[61:48:-1] + s[67] + s[47:12:-1] + s[3] + s[11:3:-1] + s[2] + s[12]
  393. elif len(s) == 87:
  394. return s[6:27] + s[4] + s[28:39] + s[27] + s[40:59] + s[2] + s[60:]
  395. elif len(s) == 86:
  396. return s[5:20] + s[2] + s[21:]
  397. elif len(s) == 85:
  398. return s[83:34:-1] + s[0] + s[33:27:-1] + s[3] + s[26:19:-1] + s[34] + s[18:3:-1] + s[27]
  399. elif len(s) == 84:
  400. return s[83:27:-1] + s[0] + s[26:5:-1] + s[2:0:-1] + s[27]
  401. elif len(s) == 83:
  402. return s[81:64:-1] + s[82] + s[63:52:-1] + s[45] + s[51:45:-1] + s[1] + s[44:1:-1] + s[0]
  403. elif len(s) == 82:
  404. return s[1:19] + s[0] + s[20:68] + s[19] + s[69:82]
  405. elif len(s) == 81:
  406. return s[56] + s[79:56:-1] + s[41] + s[55:41:-1] + s[80] + s[40:34:-1] + s[0] + s[33:29:-1] + s[34] + s[28:9:-1] + s[29] + s[8:0:-1] + s[9]
  407. elif len(s) == 80:
  408. return s[1:19] + s[0] + s[20:68] + s[19] + s[69:80]
  409. elif len(s) == 79:
  410. return s[54] + s[77:54:-1] + s[39] + s[53:39:-1] + s[78] + s[38:34:-1] + s[0] + s[33:29:-1] + s[34] + s[28:9:-1] + s[29] + s[8:0:-1] + s[9]
  411. else:
  412. raise ExtractorError(u'Unable to decrypt signature, key length %d not supported; retrying might work' % (len(s)))
  413. def _decrypt_signature_age_gate(self, s):
  414. # The videos with age protection use another player, so the algorithms
  415. # can be different.
  416. if len(s) == 86:
  417. return s[2:63] + s[82] + s[64:82] + s[63]
  418. else:
  419. # Fallback to the other algortihms
  420. return self._decrypt_signature(s)
  421. def _get_available_subtitles(self, video_id):
  422. self.report_video_subtitles_download(video_id)
  423. request = compat_urllib_request.Request('http://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id)
  424. try:
  425. sub_list = compat_urllib_request.urlopen(request).read().decode('utf-8')
  426. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  427. self._downloader.report_warning(u'unable to download video subtitles: %s' % compat_str(err))
  428. return {}
  429. sub_lang_list = re.findall(r'name="([^"]*)"[^>]+lang_code="([\w\-]+)"', sub_list)
  430. sub_lang_list = dict((l[1], l[0]) for l in sub_lang_list)
  431. if not sub_lang_list:
  432. self._downloader.report_warning(u'video doesn\'t have subtitles')
  433. return {}
  434. return sub_lang_list
  435. def _list_available_subtitles(self, video_id):
  436. sub_lang_list = self._get_available_subtitles(video_id)
  437. self.report_video_subtitles_available(video_id, sub_lang_list)
  438. def _request_subtitle(self, sub_lang, sub_name, video_id, format):
  439. """
  440. Return the subtitle as a string or None if they are not found
  441. """
  442. self.report_video_subtitles_request(video_id, sub_lang, format)
  443. params = compat_urllib_parse.urlencode({
  444. 'lang': sub_lang,
  445. 'name': sub_name,
  446. 'v': video_id,
  447. 'fmt': format,
  448. })
  449. url = 'http://www.youtube.com/api/timedtext?' + params
  450. try:
  451. sub = compat_urllib_request.urlopen(url).read().decode('utf-8')
  452. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  453. self._downloader.report_warning(u'unable to download video subtitles for %s: %s' % (sub_lang, compat_str(err)))
  454. return
  455. if not sub:
  456. self._downloader.report_warning(u'Did not fetch video subtitles')
  457. return
  458. return sub
  459. def _request_automatic_caption(self, video_id, webpage):
  460. """We need the webpage for getting the captions url, pass it as an
  461. argument to speed up the process."""
  462. sub_lang = self._downloader.params.get('subtitleslang') or 'en'
  463. sub_format = self._downloader.params.get('subtitlesformat')
  464. self.to_screen(u'%s: Looking for automatic captions' % video_id)
  465. mobj = re.search(r';ytplayer.config = ({.*?});', webpage)
  466. err_msg = u'Couldn\'t find automatic captions for "%s"' % sub_lang
  467. if mobj is None:
  468. self._downloader.report_warning(err_msg)
  469. return {}
  470. player_config = json.loads(mobj.group(1))
  471. try:
  472. args = player_config[u'args']
  473. caption_url = args[u'ttsurl']
  474. timestamp = args[u'timestamp']
  475. params = compat_urllib_parse.urlencode({
  476. 'lang': 'en',
  477. 'tlang': sub_lang,
  478. 'fmt': sub_format,
  479. 'ts': timestamp,
  480. 'kind': 'asr',
  481. })
  482. subtitles_url = caption_url + '&' + params
  483. sub = self._download_webpage(subtitles_url, video_id, u'Downloading automatic captions')
  484. return {sub_lang: sub}
  485. # An extractor error can be raise by the download process if there are
  486. # no automatic captions but there are subtitles
  487. except (KeyError, ExtractorError):
  488. self._downloader.report_warning(err_msg)
  489. return {}
  490. def _extract_subtitles(self, video_id):
  491. """
  492. Return a dictionary: {language: subtitles} or {} if the subtitles
  493. couldn't be found
  494. """
  495. sub_lang_list = self._get_available_subtitles(video_id)
  496. sub_format = self._downloader.params.get('subtitlesformat')
  497. if not sub_lang_list: #There was some error, it didn't get the available subtitles
  498. return {}
  499. if self._downloader.params.get('allsubtitles', False):
  500. pass
  501. else:
  502. if self._downloader.params.get('subtitleslang', False):
  503. sub_lang = self._downloader.params.get('subtitleslang')
  504. elif 'en' in sub_lang_list:
  505. sub_lang = 'en'
  506. else:
  507. sub_lang = list(sub_lang_list.keys())[0]
  508. if not sub_lang in sub_lang_list:
  509. self._downloader.report_warning(u'no closed captions found in the specified language "%s"' % sub_lang)
  510. return {}
  511. sub_lang_list = {sub_lang: sub_lang_list[sub_lang]}
  512. subtitles = {}
  513. for sub_lang in sub_lang_list:
  514. subtitle = self._request_subtitle(sub_lang, sub_lang_list[sub_lang].encode('utf-8'), video_id, sub_format)
  515. if subtitle:
  516. subtitles[sub_lang] = subtitle
  517. return subtitles
  518. def _print_formats(self, formats):
  519. print('Available formats:')
  520. for x in formats:
  521. print('%s\t:\t%s\t[%s]%s' %(x, self._video_extensions.get(x, 'flv'),
  522. self._video_dimensions.get(x, '???'),
  523. ' ('+self._special_itags[x]+')' if x in self._special_itags else ''))
  524. def _extract_id(self, url):
  525. mobj = re.match(self._VALID_URL, url, re.VERBOSE)
  526. if mobj is None:
  527. raise ExtractorError(u'Invalid URL: %s' % url)
  528. video_id = mobj.group(2)
  529. return video_id
  530. def _get_video_url_list(self, url_map):
  531. """
  532. Transform a dictionary in the format {itag:url} to a list of (itag, url)
  533. with the requested formats.
  534. """
  535. req_format = self._downloader.params.get('format', None)
  536. format_limit = self._downloader.params.get('format_limit', None)
  537. available_formats = self._available_formats_prefer_free if self._downloader.params.get('prefer_free_formats', False) else self._available_formats
  538. if format_limit is not None and format_limit in available_formats:
  539. format_list = available_formats[available_formats.index(format_limit):]
  540. else:
  541. format_list = available_formats
  542. existing_formats = [x for x in format_list if x in url_map]
  543. if len(existing_formats) == 0:
  544. raise ExtractorError(u'no known formats available for video')
  545. if self._downloader.params.get('listformats', None):
  546. self._print_formats(existing_formats)
  547. return
  548. if req_format is None or req_format == 'best':
  549. video_url_list = [(existing_formats[0], url_map[existing_formats[0]])] # Best quality
  550. elif req_format == 'worst':
  551. video_url_list = [(existing_formats[-1], url_map[existing_formats[-1]])] # worst quality
  552. elif req_format in ('-1', 'all'):
  553. video_url_list = [(f, url_map[f]) for f in existing_formats] # All formats
  554. else:
  555. # Specific formats. We pick the first in a slash-delimeted sequence.
  556. # For example, if '1/2/3/4' is requested and '2' and '4' are available, we pick '2'.
  557. req_formats = req_format.split('/')
  558. video_url_list = None
  559. for rf in req_formats:
  560. if rf in url_map:
  561. video_url_list = [(rf, url_map[rf])]
  562. break
  563. if video_url_list is None:
  564. raise ExtractorError(u'requested format not available')
  565. return video_url_list
  566. def _extract_from_m3u8(self, manifest_url, video_id):
  567. url_map = {}
  568. def _get_urls(_manifest):
  569. lines = _manifest.split('\n')
  570. urls = filter(lambda l: l and not l.startswith('#'),
  571. lines)
  572. return urls
  573. manifest = self._download_webpage(manifest_url, video_id, u'Downloading formats manifest')
  574. formats_urls = _get_urls(manifest)
  575. for format_url in formats_urls:
  576. itag = self._search_regex(r'itag/(\d+?)/', format_url, 'itag')
  577. url_map[itag] = format_url
  578. return url_map
  579. def _real_extract(self, url):
  580. if re.match(r'(?:https?://)?[^/]+/watch\?feature=[a-z_]+$', url):
  581. self._downloader.report_warning(u'Did you forget to quote the URL? Remember that & is a meta-character in most shells, so you want to put the URL in quotes, like youtube-dl \'http://www.youtube.com/watch?feature=foo&v=BaW_jenozKc\' (or simply youtube-dl BaW_jenozKc ).')
  582. # Extract original video URL from URL with redirection, like age verification, using next_url parameter
  583. mobj = re.search(self._NEXT_URL_RE, url)
  584. if mobj:
  585. url = 'https://www.youtube.com/' + compat_urllib_parse.unquote(mobj.group(1)).lstrip('/')
  586. video_id = self._extract_id(url)
  587. # Get video webpage
  588. self.report_video_webpage_download(video_id)
  589. url = 'https://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1' % video_id
  590. request = compat_urllib_request.Request(url)
  591. try:
  592. video_webpage_bytes = compat_urllib_request.urlopen(request).read()
  593. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  594. raise ExtractorError(u'Unable to download video webpage: %s' % compat_str(err))
  595. video_webpage = video_webpage_bytes.decode('utf-8', 'ignore')
  596. # Attempt to extract SWF player URL
  597. mobj = re.search(r'swfConfig.*?"(http:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage)
  598. if mobj is not None:
  599. player_url = re.sub(r'\\(.)', r'\1', mobj.group(1))
  600. else:
  601. player_url = None
  602. # Get video info
  603. self.report_video_info_webpage_download(video_id)
  604. if re.search(r'player-age-gate-content">', video_webpage) is not None:
  605. self.report_age_confirmation()
  606. age_gate = True
  607. # We simulate the access to the video from www.youtube.com/v/{video_id}
  608. # this can be viewed without login into Youtube
  609. data = compat_urllib_parse.urlencode({'video_id': video_id,
  610. 'el': 'embedded',
  611. 'gl': 'US',
  612. 'hl': 'en',
  613. 'eurl': 'https://youtube.googleapis.com/v/' + video_id,
  614. 'asv': 3,
  615. 'sts':'1588',
  616. })
  617. video_info_url = 'https://www.youtube.com/get_video_info?' + data
  618. video_info_webpage = self._download_webpage(video_info_url, video_id,
  619. note=False,
  620. errnote='unable to download video info webpage')
  621. video_info = compat_parse_qs(video_info_webpage)
  622. else:
  623. age_gate = False
  624. for el_type in ['&el=embedded', '&el=detailpage', '&el=vevo', '']:
  625. video_info_url = ('https://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
  626. % (video_id, el_type))
  627. video_info_webpage = self._download_webpage(video_info_url, video_id,
  628. note=False,
  629. errnote='unable to download video info webpage')
  630. video_info = compat_parse_qs(video_info_webpage)
  631. if 'token' in video_info:
  632. break
  633. if 'token' not in video_info:
  634. if 'reason' in video_info:
  635. raise ExtractorError(u'YouTube said: %s' % video_info['reason'][0], expected=True)
  636. else:
  637. raise ExtractorError(u'"token" parameter not in video info for unknown reason')
  638. # Check for "rental" videos
  639. if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info:
  640. raise ExtractorError(u'"rental" videos not supported')
  641. # Start extracting information
  642. self.report_information_extraction(video_id)
  643. # uploader
  644. if 'author' not in video_info:
  645. raise ExtractorError(u'Unable to extract uploader name')
  646. video_uploader = compat_urllib_parse.unquote_plus(video_info['author'][0])
  647. # uploader_id
  648. video_uploader_id = None
  649. mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage)
  650. if mobj is not None:
  651. video_uploader_id = mobj.group(1)
  652. else:
  653. self._downloader.report_warning(u'unable to extract uploader nickname')
  654. # title
  655. if 'title' not in video_info:
  656. raise ExtractorError(u'Unable to extract video title')
  657. video_title = compat_urllib_parse.unquote_plus(video_info['title'][0])
  658. # thumbnail image
  659. # We try first to get a high quality image:
  660. m_thumb = re.search(r'<span itemprop="thumbnail".*?href="(.*?)">',
  661. video_webpage, re.DOTALL)
  662. if m_thumb is not None:
  663. video_thumbnail = m_thumb.group(1)
  664. elif 'thumbnail_url' not in video_info:
  665. self._downloader.report_warning(u'unable to extract video thumbnail')
  666. video_thumbnail = ''
  667. else: # don't panic if we can't find it
  668. video_thumbnail = compat_urllib_parse.unquote_plus(video_info['thumbnail_url'][0])
  669. # upload date
  670. upload_date = None
  671. mobj = re.search(r'id="eow-date.*?>(.*?)</span>', video_webpage, re.DOTALL)
  672. if mobj is not None:
  673. upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
  674. upload_date = unified_strdate(upload_date)
  675. # description
  676. video_description = get_element_by_id("eow-description", video_webpage)
  677. if video_description:
  678. video_description = clean_html(video_description)
  679. else:
  680. fd_mobj = re.search(r'<meta name="description" content="([^"]+)"', video_webpage)
  681. if fd_mobj:
  682. video_description = unescapeHTML(fd_mobj.group(1))
  683. else:
  684. video_description = u''
  685. # subtitles
  686. video_subtitles = None
  687. if self._downloader.params.get('writesubtitles', False) or self._downloader.params.get('allsubtitles', False):
  688. video_subtitles = self._extract_subtitles(video_id)
  689. elif self._downloader.params.get('writeautomaticsub', False):
  690. video_subtitles = self._request_automatic_caption(video_id, video_webpage)
  691. if self._downloader.params.get('listsubtitles', False):
  692. self._list_available_subtitles(video_id)
  693. return
  694. if 'length_seconds' not in video_info:
  695. self._downloader.report_warning(u'unable to extract video duration')
  696. video_duration = ''
  697. else:
  698. video_duration = compat_urllib_parse.unquote_plus(video_info['length_seconds'][0])
  699. # Decide which formats to download
  700. try:
  701. mobj = re.search(r';ytplayer.config = ({.*?});', video_webpage)
  702. if not mobj:
  703. raise ValueError('Could not find vevo ID')
  704. info = json.loads(mobj.group(1))
  705. args = info['args']
  706. # Easy way to know if the 's' value is in url_encoded_fmt_stream_map
  707. # this signatures are encrypted
  708. m_s = re.search(r'[&,]s=', args['url_encoded_fmt_stream_map'])
  709. if m_s is not None:
  710. self.to_screen(u'%s: Encrypted signatures detected.' % video_id)
  711. video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
  712. m_s = re.search(r'[&,]s=', args.get('adaptive_fmts', u''))
  713. if m_s is not None:
  714. if 'url_encoded_fmt_stream_map' in video_info:
  715. video_info['url_encoded_fmt_stream_map'][0] += ',' + args['adaptive_fmts']
  716. else:
  717. video_info['url_encoded_fmt_stream_map'] = [args['adaptive_fmts']]
  718. elif 'adaptive_fmts' in video_info:
  719. if 'url_encoded_fmt_stream_map' in video_info:
  720. video_info['url_encoded_fmt_stream_map'][0] += ',' + video_info['adaptive_fmts'][0]
  721. else:
  722. video_info['url_encoded_fmt_stream_map'] = video_info['adaptive_fmts']
  723. except ValueError:
  724. pass
  725. if 'conn' in video_info and video_info['conn'][0].startswith('rtmp'):
  726. self.report_rtmp_download()
  727. video_url_list = [(None, video_info['conn'][0])]
  728. elif 'url_encoded_fmt_stream_map' in video_info and len(video_info['url_encoded_fmt_stream_map']) >= 1:
  729. if 'rtmpe%3Dyes' in video_info['url_encoded_fmt_stream_map'][0]:
  730. raise ExtractorError('rtmpe downloads are not supported, see https://github.com/rg3/youtube-dl/issues/343 for more information.', expected=True)
  731. url_map = {}
  732. for url_data_str in video_info['url_encoded_fmt_stream_map'][0].split(','):
  733. url_data = compat_parse_qs(url_data_str)
  734. if 'itag' in url_data and 'url' in url_data:
  735. url = url_data['url'][0]
  736. if 'sig' in url_data:
  737. url += '&signature=' + url_data['sig'][0]
  738. elif 's' in url_data:
  739. if self._downloader.params.get('verbose'):
  740. s = url_data['s'][0]
  741. if age_gate:
  742. player_version = self._search_regex(r'ad3-(.+?)\.swf',
  743. video_info['ad3_module'][0] if 'ad3_module' in video_info else 'NOT FOUND',
  744. 'flash player', fatal=False)
  745. player = 'flash player %s' % player_version
  746. else:
  747. player = u'html5 player %s' % self._search_regex(r'html5player-(.+?)\.js', video_webpage,
  748. 'html5 player', fatal=False)
  749. parts_sizes = u'.'.join(compat_str(len(part)) for part in s.split('.'))
  750. self.to_screen(u'encrypted signature length %d (%s), itag %s, %s' %
  751. (len(s), parts_sizes, url_data['itag'][0], player))
  752. encrypted_sig = url_data['s'][0]
  753. if age_gate:
  754. signature = self._decrypt_signature_age_gate(encrypted_sig)
  755. else:
  756. signature = self._decrypt_signature(encrypted_sig)
  757. url += '&signature=' + signature
  758. if 'ratebypass' not in url:
  759. url += '&ratebypass=yes'
  760. url_map[url_data['itag'][0]] = url
  761. video_url_list = self._get_video_url_list(url_map)
  762. if not video_url_list:
  763. return
  764. elif video_info.get('hlsvp'):
  765. manifest_url = video_info['hlsvp'][0]
  766. url_map = self._extract_from_m3u8(manifest_url, video_id)
  767. video_url_list = self._get_video_url_list(url_map)
  768. if not video_url_list:
  769. return
  770. else:
  771. raise ExtractorError(u'no conn or url_encoded_fmt_stream_map information found in video info')
  772. results = []
  773. for format_param, video_real_url in video_url_list:
  774. # Extension
  775. video_extension = self._video_extensions.get(format_param, 'flv')
  776. video_format = '{0} - {1}{2}'.format(format_param if format_param else video_extension,
  777. self._video_dimensions.get(format_param, '???'),
  778. ' ('+self._special_itags[format_param]+')' if format_param in self._special_itags else '')
  779. results.append({
  780. 'id': video_id,
  781. 'url': video_real_url,
  782. 'uploader': video_uploader,
  783. 'uploader_id': video_uploader_id,
  784. 'upload_date': upload_date,
  785. 'title': video_title,
  786. 'ext': video_extension,
  787. 'format': video_format,
  788. 'thumbnail': video_thumbnail,
  789. 'description': video_description,
  790. 'player_url': player_url,
  791. 'subtitles': video_subtitles,
  792. 'duration': video_duration
  793. })
  794. return results
  795. class YoutubePlaylistIE(InfoExtractor):
  796. IE_DESC = u'YouTube.com playlists'
  797. _VALID_URL = r"""(?:
  798. (?:https?://)?
  799. (?:\w+\.)?
  800. youtube\.com/
  801. (?:
  802. (?:course|view_play_list|my_playlists|artist|playlist|watch)
  803. \? (?:.*?&)*? (?:p|a|list)=
  804. | p/
  805. )
  806. ((?:PL|EC|UU|FL)?[0-9A-Za-z-_]{10,})
  807. .*
  808. |
  809. ((?:PL|EC|UU|FL)[0-9A-Za-z-_]{10,})
  810. )"""
  811. _TEMPLATE_URL = 'https://gdata.youtube.com/feeds/api/playlists/%s?max-results=%i&start-index=%i&v=2&alt=json&safeSearch=none'
  812. _MAX_RESULTS = 50
  813. IE_NAME = u'youtube:playlist'
  814. @classmethod
  815. def suitable(cls, url):
  816. """Receives a URL and returns True if suitable for this IE."""
  817. return re.match(cls._VALID_URL, url, re.VERBOSE) is not None
  818. def _real_extract(self, url):
  819. # Extract playlist id
  820. mobj = re.match(self._VALID_URL, url, re.VERBOSE)
  821. if mobj is None:
  822. raise ExtractorError(u'Invalid URL: %s' % url)
  823. # Download playlist videos from API
  824. playlist_id = mobj.group(1) or mobj.group(2)
  825. videos = []
  826. for page_num in itertools.count(1):
  827. start_index = self._MAX_RESULTS * (page_num - 1) + 1
  828. if start_index >= 1000:
  829. self._downloader.report_warning(u'Max number of results reached')
  830. break
  831. url = self._TEMPLATE_URL % (playlist_id, self._MAX_RESULTS, start_index)
  832. page = self._download_webpage(url, playlist_id, u'Downloading page #%s' % page_num)
  833. try:
  834. response = json.loads(page)
  835. except ValueError as err:
  836. raise ExtractorError(u'Invalid JSON in API response: ' + compat_str(err))
  837. if 'feed' not in response:
  838. raise ExtractorError(u'Got a malformed response from YouTube API')
  839. playlist_title = response['feed']['title']['$t']
  840. if 'entry' not in response['feed']:
  841. # Number of videos is a multiple of self._MAX_RESULTS
  842. break
  843. for entry in response['feed']['entry']:
  844. index = entry['yt$position']['$t']
  845. if 'media$group' in entry and 'media$player' in entry['media$group']:
  846. videos.append((index, entry['media$group']['media$player']['url']))
  847. videos = [v[1] for v in sorted(videos)]
  848. url_results = [self.url_result(vurl, 'Youtube') for vurl in videos]
  849. return [self.playlist_result(url_results, playlist_id, playlist_title)]
  850. class YoutubeChannelIE(InfoExtractor):
  851. IE_DESC = u'YouTube.com channels'
  852. _VALID_URL = r"^(?:https?://)?(?:youtu\.be|(?:\w+\.)?youtube(?:-nocookie)?\.com)/channel/([0-9A-Za-z_-]+)"
  853. _TEMPLATE_URL = 'http://www.youtube.com/channel/%s/videos?sort=da&flow=list&view=0&page=%s&gl=US&hl=en'
  854. _MORE_PAGES_INDICATOR = 'yt-uix-load-more'
  855. _MORE_PAGES_URL = 'http://www.youtube.com/c4_browse_ajax?action_load_more_videos=1&flow=list&paging=%s&view=0&sort=da&channel_id=%s'
  856. IE_NAME = u'youtube:channel'
  857. def extract_videos_from_page(self, page):
  858. ids_in_page = []
  859. for mobj in re.finditer(r'href="/watch\?v=([0-9A-Za-z_-]+)&?', page):
  860. if mobj.group(1) not in ids_in_page:
  861. ids_in_page.append(mobj.group(1))
  862. return ids_in_page
  863. def _real_extract(self, url):
  864. # Extract channel id
  865. mobj = re.match(self._VALID_URL, url)
  866. if mobj is None:
  867. raise ExtractorError(u'Invalid URL: %s' % url)
  868. # Download channel page
  869. channel_id = mobj.group(1)
  870. video_ids = []
  871. pagenum = 1
  872. url = self._TEMPLATE_URL % (channel_id, pagenum)
  873. page = self._download_webpage(url, channel_id,
  874. u'Downloading page #%s' % pagenum)
  875. # Extract video identifiers
  876. ids_in_page = self.extract_videos_from_page(page)
  877. video_ids.extend(ids_in_page)
  878. # Download any subsequent channel pages using the json-based channel_ajax query
  879. if self._MORE_PAGES_INDICATOR in page:
  880. for pagenum in itertools.count(1):
  881. url = self._MORE_PAGES_URL % (pagenum, channel_id)
  882. page = self._download_webpage(url, channel_id,
  883. u'Downloading page #%s' % pagenum)
  884. page = json.loads(page)
  885. ids_in_page = self.extract_videos_from_page(page['content_html'])
  886. video_ids.extend(ids_in_page)
  887. if self._MORE_PAGES_INDICATOR not in page['load_more_widget_html']:
  888. break
  889. self._downloader.to_screen(u'[youtube] Channel %s: Found %i videos' % (channel_id, len(video_ids)))
  890. urls = ['http://www.youtube.com/watch?v=%s' % id for id in video_ids]
  891. url_entries = [self.url_result(eurl, 'Youtube') for eurl in urls]
  892. return [self.playlist_result(url_entries, channel_id)]
  893. class YoutubeUserIE(InfoExtractor):
  894. IE_DESC = u'YouTube.com user videos (URL or "ytuser" keyword)'
  895. _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/user/)|ytuser:)([A-Za-z0-9_-]+)'
  896. _TEMPLATE_URL = 'http://gdata.youtube.com/feeds/api/users/%s'
  897. _GDATA_PAGE_SIZE = 50
  898. _GDATA_URL = 'http://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d'
  899. _VIDEO_INDICATOR = r'/watch\?v=(.+?)[\<&]'
  900. IE_NAME = u'youtube:user'
  901. def _real_extract(self, url):
  902. # Extract username
  903. mobj = re.match(self._VALID_URL, url)
  904. if mobj is None:
  905. raise ExtractorError(u'Invalid URL: %s' % url)
  906. username = mobj.group(1)
  907. # Download video ids using YouTube Data API. Result size per
  908. # query is limited (currently to 50 videos) so we need to query
  909. # page by page until there are no video ids - it means we got
  910. # all of them.
  911. video_ids = []
  912. for pagenum in itertools.count(0):
  913. start_index = pagenum * self._GDATA_PAGE_SIZE + 1
  914. gdata_url = self._GDATA_URL % (username, self._GDATA_PAGE_SIZE, start_index)
  915. page = self._download_webpage(gdata_url, username,
  916. u'Downloading video ids from %d to %d' % (start_index, start_index + self._GDATA_PAGE_SIZE))
  917. # Extract video identifiers
  918. ids_in_page = []
  919. for mobj in re.finditer(self._VIDEO_INDICATOR, page):
  920. if mobj.group(1) not in ids_in_page:
  921. ids_in_page.append(mobj.group(1))
  922. video_ids.extend(ids_in_page)
  923. # A little optimization - if current page is not
  924. # "full", ie. does not contain PAGE_SIZE video ids then
  925. # we can assume that this page is the last one - there
  926. # are no more ids on further pages - no need to query
  927. # again.
  928. if len(ids_in_page) < self._GDATA_PAGE_SIZE:
  929. break
  930. urls = ['http://www.youtube.com/watch?v=%s' % video_id for video_id in video_ids]
  931. url_results = [self.url_result(rurl, 'Youtube') for rurl in urls]
  932. return [self.playlist_result(url_results, playlist_title = username)]
  933. class YoutubeSearchIE(SearchInfoExtractor):
  934. IE_DESC = u'YouTube.com searches'
  935. _API_URL = 'https://gdata.youtube.com/feeds/api/videos?q=%s&start-index=%i&max-results=50&v=2&alt=jsonc'
  936. _MAX_RESULTS = 1000
  937. IE_NAME = u'youtube:search'
  938. _SEARCH_KEY = 'ytsearch'
  939. def report_download_page(self, query, pagenum):
  940. """Report attempt to download search page with given number."""
  941. self._downloader.to_screen(u'[youtube] query "%s": Downloading page %s' % (query, pagenum))
  942. def _get_n_results(self, query, n):
  943. """Get a specified number of results for a query"""
  944. video_ids = []
  945. pagenum = 0
  946. limit = n
  947. while (50 * pagenum) < limit:
  948. self.report_download_page(query, pagenum+1)
  949. result_url = self._API_URL % (compat_urllib_parse.quote_plus(query), (50*pagenum)+1)
  950. request = compat_urllib_request.Request(result_url)
  951. try:
  952. data = compat_urllib_request.urlopen(request).read().decode('utf-8')
  953. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  954. raise ExtractorError(u'Unable to download API page: %s' % compat_str(err))
  955. api_response = json.loads(data)['data']
  956. if not 'items' in api_response:
  957. raise ExtractorError(u'[youtube] No video results')
  958. new_ids = list(video['id'] for video in api_response['items'])
  959. video_ids += new_ids
  960. limit = min(n, api_response['totalItems'])
  961. pagenum += 1
  962. if len(video_ids) > n:
  963. video_ids = video_ids[:n]
  964. videos = [self.url_result('http://www.youtube.com/watch?v=%s' % id, 'Youtube') for id in video_ids]
  965. return self.playlist_result(videos, query)
  966. class YoutubeShowIE(InfoExtractor):
  967. IE_DESC = u'YouTube.com (multi-season) shows'
  968. _VALID_URL = r'https?://www\.youtube\.com/show/(.*)'
  969. IE_NAME = u'youtube:show'
  970. def _real_extract(self, url):
  971. mobj = re.match(self._VALID_URL, url)
  972. show_name = mobj.group(1)
  973. webpage = self._download_webpage(url, show_name, u'Downloading show webpage')
  974. # There's one playlist for each season of the show
  975. m_seasons = list(re.finditer(r'href="(/playlist\?list=.*?)"', webpage))
  976. self.to_screen(u'%s: Found %s seasons' % (show_name, len(m_seasons)))
  977. return [self.url_result('https://www.youtube.com' + season.group(1), 'YoutubePlaylist') for season in m_seasons]
  978. class YoutubeFeedsInfoExtractor(YoutubeBaseInfoExtractor):
  979. """
  980. Base class for extractors that fetch info from
  981. http://www.youtube.com/feed_ajax
  982. Subclasses must define the _FEED_NAME and _PLAYLIST_TITLE properties.
  983. """
  984. _LOGIN_REQUIRED = True
  985. _PAGING_STEP = 30
  986. # use action_load_personal_feed instead of action_load_system_feed
  987. _PERSONAL_FEED = False
  988. @property
  989. def _FEED_TEMPLATE(self):
  990. action = 'action_load_system_feed'
  991. if self._PERSONAL_FEED:
  992. action = 'action_load_personal_feed'
  993. return 'http://www.youtube.com/feed_ajax?%s=1&feed_name=%s&paging=%%s' % (action, self._FEED_NAME)
  994. @property
  995. def IE_NAME(self):
  996. return u'youtube:%s' % self._FEED_NAME
  997. def _real_initialize(self):
  998. self._login()
  999. def _real_extract(self, url):
  1000. feed_entries = []
  1001. # The step argument is available only in 2.7 or higher
  1002. for i in itertools.count(0):
  1003. paging = i*self._PAGING_STEP
  1004. info = self._download_webpage(self._FEED_TEMPLATE % paging,
  1005. u'%s feed' % self._FEED_NAME,
  1006. u'Downloading page %s' % i)
  1007. info = json.loads(info)
  1008. feed_html = info['feed_html']
  1009. m_ids = re.finditer(r'"/watch\?v=(.*?)["&]', feed_html)
  1010. ids = orderedSet(m.group(1) for m in m_ids)
  1011. feed_entries.extend(self.url_result(id, 'Youtube') for id in ids)
  1012. if info['paging'] is None:
  1013. break
  1014. return self.playlist_result(feed_entries, playlist_title=self._PLAYLIST_TITLE)
  1015. class YoutubeSubscriptionsIE(YoutubeFeedsInfoExtractor):
  1016. IE_DESC = u'YouTube.com subscriptions feed, "ytsubs" keyword(requires authentication)'
  1017. _VALID_URL = r'https?://www\.youtube\.com/feed/subscriptions|:ytsubs(?:criptions)?'
  1018. _FEED_NAME = 'subscriptions'
  1019. _PLAYLIST_TITLE = u'Youtube Subscriptions'
  1020. class YoutubeRecommendedIE(YoutubeFeedsInfoExtractor):
  1021. IE_DESC = u'YouTube.com recommended videos, "ytrec" keyword (requires authentication)'
  1022. _VALID_URL = r'https?://www\.youtube\.com/feed/recommended|:ytrec(?:ommended)?'
  1023. _FEED_NAME = 'recommended'
  1024. _PLAYLIST_TITLE = u'Youtube Recommended videos'
  1025. class YoutubeWatchLaterIE(YoutubeFeedsInfoExtractor):
  1026. IE_DESC = u'Youtube watch later list, "ytwatchlater" keyword (requires authentication)'
  1027. _VALID_URL = r'https?://www\.youtube\.com/feed/watch_later|:ytwatchlater'
  1028. _FEED_NAME = 'watch_later'
  1029. _PLAYLIST_TITLE = u'Youtube Watch Later'
  1030. _PAGING_STEP = 100
  1031. _PERSONAL_FEED = True
  1032. class YoutubeFavouritesIE(YoutubeBaseInfoExtractor):
  1033. IE_NAME = u'youtube:favorites'
  1034. IE_DESC = u'YouTube.com favourite videos, "ytfav" keyword (requires authentication)'
  1035. _VALID_URL = r'https?://www\.youtube\.com/my_favorites|:ytfav(?:o?rites)?'
  1036. _LOGIN_REQUIRED = True
  1037. def _real_extract(self, url):
  1038. webpage = self._download_webpage('https://www.youtube.com/my_favorites', 'Youtube Favourites videos')
  1039. playlist_id = self._search_regex(r'list=(.+?)["&]', webpage, u'favourites playlist id')
  1040. return self.url_result(playlist_id, 'YoutubePlaylist')