youtube.py 48 KB

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