You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1887 lines
83 KiB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
10 years ago
11 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from __future__ import absolute_import, unicode_literals
  4. import collections
  5. import contextlib
  6. import datetime
  7. import errno
  8. import fileinput
  9. import io
  10. import itertools
  11. import json
  12. import locale
  13. import operator
  14. import os
  15. import platform
  16. import re
  17. import shutil
  18. import subprocess
  19. import socket
  20. import sys
  21. import time
  22. import traceback
  23. if os.name == 'nt':
  24. import ctypes
  25. from .compat import (
  26. compat_basestring,
  27. compat_cookiejar,
  28. compat_expanduser,
  29. compat_get_terminal_size,
  30. compat_http_client,
  31. compat_kwargs,
  32. compat_str,
  33. compat_urllib_error,
  34. compat_urllib_request,
  35. )
  36. from .utils import (
  37. escape_url,
  38. ContentTooShortError,
  39. date_from_str,
  40. DateRange,
  41. DEFAULT_OUTTMPL,
  42. determine_ext,
  43. DownloadError,
  44. encodeFilename,
  45. ExtractorError,
  46. format_bytes,
  47. formatSeconds,
  48. HEADRequest,
  49. locked_file,
  50. make_HTTPS_handler,
  51. MaxDownloadsReached,
  52. PagedList,
  53. parse_filesize,
  54. PerRequestProxyHandler,
  55. PostProcessingError,
  56. platform_name,
  57. preferredencoding,
  58. render_table,
  59. SameFileError,
  60. sanitize_filename,
  61. sanitize_path,
  62. std_headers,
  63. subtitles_filename,
  64. UnavailableVideoError,
  65. url_basename,
  66. version_tuple,
  67. write_json_file,
  68. write_string,
  69. YoutubeDLHandler,
  70. prepend_extension,
  71. replace_extension,
  72. args_to_str,
  73. age_restricted,
  74. )
  75. from .cache import Cache
  76. from .extractor import get_info_extractor, gen_extractors
  77. from .downloader import get_suitable_downloader
  78. from .downloader.rtmp import rtmpdump_version
  79. from .postprocessor import (
  80. FFmpegFixupM4aPP,
  81. FFmpegFixupStretchedPP,
  82. FFmpegMergerPP,
  83. FFmpegPostProcessor,
  84. get_postprocessor,
  85. )
  86. from .version import __version__
  87. class YoutubeDL(object):
  88. """YoutubeDL class.
  89. YoutubeDL objects are the ones responsible of downloading the
  90. actual video file and writing it to disk if the user has requested
  91. it, among some other tasks. In most cases there should be one per
  92. program. As, given a video URL, the downloader doesn't know how to
  93. extract all the needed information, task that InfoExtractors do, it
  94. has to pass the URL to one of them.
  95. For this, YoutubeDL objects have a method that allows
  96. InfoExtractors to be registered in a given order. When it is passed
  97. a URL, the YoutubeDL object handles it to the first InfoExtractor it
  98. finds that reports being able to handle it. The InfoExtractor extracts
  99. all the information about the video or videos the URL refers to, and
  100. YoutubeDL process the extracted information, possibly using a File
  101. Downloader to download the video.
  102. YoutubeDL objects accept a lot of parameters. In order not to saturate
  103. the object constructor with arguments, it receives a dictionary of
  104. options instead. These options are available through the params
  105. attribute for the InfoExtractors to use. The YoutubeDL also
  106. registers itself as the downloader in charge for the InfoExtractors
  107. that are added to it, so this is a "mutual registration".
  108. Available options:
  109. username: Username for authentication purposes.
  110. password: Password for authentication purposes.
  111. videopassword: Password for accessing a video.
  112. usenetrc: Use netrc for authentication instead.
  113. verbose: Print additional info to stdout.
  114. quiet: Do not print messages to stdout.
  115. no_warnings: Do not print out anything for warnings.
  116. forceurl: Force printing final URL.
  117. forcetitle: Force printing title.
  118. forceid: Force printing ID.
  119. forcethumbnail: Force printing thumbnail URL.
  120. forcedescription: Force printing description.
  121. forcefilename: Force printing final filename.
  122. forceduration: Force printing duration.
  123. forcejson: Force printing info_dict as JSON.
  124. dump_single_json: Force printing the info_dict of the whole playlist
  125. (or video) as a single JSON line.
  126. simulate: Do not download the video files.
  127. format: Video format code. See options.py for more information.
  128. outtmpl: Template for output names.
  129. restrictfilenames: Do not allow "&" and spaces in file names
  130. ignoreerrors: Do not stop on download errors.
  131. force_generic_extractor: Force downloader to use the generic extractor
  132. nooverwrites: Prevent overwriting files.
  133. playliststart: Playlist item to start at.
  134. playlistend: Playlist item to end at.
  135. playlist_items: Specific indices of playlist to download.
  136. playlistreverse: Download playlist items in reverse order.
  137. matchtitle: Download only matching titles.
  138. rejecttitle: Reject downloads for matching titles.
  139. logger: Log messages to a logging.Logger instance.
  140. logtostderr: Log messages to stderr instead of stdout.
  141. writedescription: Write the video description to a .description file
  142. writeinfojson: Write the video description to a .info.json file
  143. writeannotations: Write the video annotations to a .annotations.xml file
  144. writethumbnail: Write the thumbnail image to a file
  145. write_all_thumbnails: Write all thumbnail formats to files
  146. writesubtitles: Write the video subtitles to a file
  147. writeautomaticsub: Write the automatic subtitles to a file
  148. allsubtitles: Downloads all the subtitles of the video
  149. (requires writesubtitles or writeautomaticsub)
  150. listsubtitles: Lists all available subtitles for the video
  151. subtitlesformat: The format code for subtitles
  152. subtitleslangs: List of languages of the subtitles to download
  153. keepvideo: Keep the video file after post-processing
  154. daterange: A DateRange object, download only if the upload_date is in the range.
  155. skip_download: Skip the actual download of the video file
  156. cachedir: Location of the cache files in the filesystem.
  157. False to disable filesystem cache.
  158. noplaylist: Download single video instead of a playlist if in doubt.
  159. age_limit: An integer representing the user's age in years.
  160. Unsuitable videos for the given age are skipped.
  161. min_views: An integer representing the minimum view count the video
  162. must have in order to not be skipped.
  163. Videos without view count information are always
  164. downloaded. None for no limit.
  165. max_views: An integer representing the maximum view count.
  166. Videos that are more popular than that are not
  167. downloaded.
  168. Videos without view count information are always
  169. downloaded. None for no limit.
  170. download_archive: File name of a file where all downloads are recorded.
  171. Videos already present in the file are not downloaded
  172. again.
  173. cookiefile: File name where cookies should be read from and dumped to.
  174. nocheckcertificate:Do not verify SSL certificates
  175. prefer_insecure: Use HTTP instead of HTTPS to retrieve information.
  176. At the moment, this is only supported by YouTube.
  177. proxy: URL of the proxy server to use
  178. cn_verification_proxy: URL of the proxy to use for IP address verification
  179. on Chinese sites. (Experimental)
  180. socket_timeout: Time to wait for unresponsive hosts, in seconds
  181. bidi_workaround: Work around buggy terminals without bidirectional text
  182. support, using fridibi
  183. debug_printtraffic:Print out sent and received HTTP traffic
  184. include_ads: Download ads as well
  185. default_search: Prepend this string if an input url is not valid.
  186. 'auto' for elaborate guessing
  187. encoding: Use this encoding instead of the system-specified.
  188. extract_flat: Do not resolve URLs, return the immediate result.
  189. Pass in 'in_playlist' to only show this behavior for
  190. playlist items.
  191. postprocessors: A list of dictionaries, each with an entry
  192. * key: The name of the postprocessor. See
  193. youtube_dl/postprocessor/__init__.py for a list.
  194. as well as any further keyword arguments for the
  195. postprocessor.
  196. progress_hooks: A list of functions that get called on download
  197. progress, with a dictionary with the entries
  198. * status: One of "downloading", "error", or "finished".
  199. Check this first and ignore unknown values.
  200. If status is one of "downloading", or "finished", the
  201. following properties may also be present:
  202. * filename: The final filename (always present)
  203. * tmpfilename: The filename we're currently writing to
  204. * downloaded_bytes: Bytes on disk
  205. * total_bytes: Size of the whole file, None if unknown
  206. * total_bytes_estimate: Guess of the eventual file size,
  207. None if unavailable.
  208. * elapsed: The number of seconds since download started.
  209. * eta: The estimated time in seconds, None if unknown
  210. * speed: The download speed in bytes/second, None if
  211. unknown
  212. * fragment_index: The counter of the currently
  213. downloaded video fragment.
  214. * fragment_count: The number of fragments (= individual
  215. files that will be merged)
  216. Progress hooks are guaranteed to be called at least once
  217. (with status "finished") if the download is successful.
  218. merge_output_format: Extension to use when merging formats.
  219. fixup: Automatically correct known faults of the file.
  220. One of:
  221. - "never": do nothing
  222. - "warn": only emit a warning
  223. - "detect_or_warn": check whether we can do anything
  224. about it, warn otherwise (default)
  225. source_address: (Experimental) Client-side IP address to bind to.
  226. call_home: Boolean, true iff we are allowed to contact the
  227. youtube-dl servers for debugging.
  228. sleep_interval: Number of seconds to sleep before each download.
  229. listformats: Print an overview of available video formats and exit.
  230. list_thumbnails: Print a table of all thumbnails and exit.
  231. match_filter: A function that gets called with the info_dict of
  232. every video.
  233. If it returns a message, the video is ignored.
  234. If it returns None, the video is downloaded.
  235. match_filter_func in utils.py is one example for this.
  236. no_color: Do not emit color codes in output.
  237. The following options determine which downloader is picked:
  238. external_downloader: Executable of the external downloader to call.
  239. None or unset for standard (built-in) downloader.
  240. hls_prefer_native: Use the native HLS downloader instead of ffmpeg/avconv.
  241. The following parameters are not used by YoutubeDL itself, they are used by
  242. the downloader (see youtube_dl/downloader/common.py):
  243. nopart, updatetime, buffersize, ratelimit, min_filesize, max_filesize, test,
  244. noresizebuffer, retries, continuedl, noprogress, consoletitle,
  245. xattr_set_filesize, external_downloader_args.
  246. The following options are used by the post processors:
  247. prefer_ffmpeg: If True, use ffmpeg instead of avconv if both are available,
  248. otherwise prefer avconv.
  249. """
  250. params = None
  251. _ies = []
  252. _pps = []
  253. _download_retcode = None
  254. _num_downloads = None
  255. _screen_file = None
  256. def __init__(self, params=None, auto_init=True):
  257. """Create a FileDownloader object with the given options."""
  258. if params is None:
  259. params = {}
  260. self._ies = []
  261. self._ies_instances = {}
  262. self._pps = []
  263. self._progress_hooks = []
  264. self._download_retcode = 0
  265. self._num_downloads = 0
  266. self._screen_file = [sys.stdout, sys.stderr][params.get('logtostderr', False)]
  267. self._err_file = sys.stderr
  268. self.params = params
  269. self.cache = Cache(self)
  270. if params.get('bidi_workaround', False):
  271. try:
  272. import pty
  273. master, slave = pty.openpty()
  274. width = compat_get_terminal_size().columns
  275. if width is None:
  276. width_args = []
  277. else:
  278. width_args = ['-w', str(width)]
  279. sp_kwargs = dict(
  280. stdin=subprocess.PIPE,
  281. stdout=slave,
  282. stderr=self._err_file)
  283. try:
  284. self._output_process = subprocess.Popen(
  285. ['bidiv'] + width_args, **sp_kwargs
  286. )
  287. except OSError:
  288. self._output_process = subprocess.Popen(
  289. ['fribidi', '-c', 'UTF-8'] + width_args, **sp_kwargs)
  290. self._output_channel = os.fdopen(master, 'rb')
  291. except OSError as ose:
  292. if ose.errno == 2:
  293. self.report_warning('Could not find fribidi executable, ignoring --bidi-workaround . Make sure that fribidi is an executable file in one of the directories in your $PATH.')
  294. else:
  295. raise
  296. if (sys.version_info >= (3,) and sys.platform != 'win32' and
  297. sys.getfilesystemencoding() in ['ascii', 'ANSI_X3.4-1968'] and
  298. not params.get('restrictfilenames', False)):
  299. # On Python 3, the Unicode filesystem API will throw errors (#1474)
  300. self.report_warning(
  301. 'Assuming --restrict-filenames since file system encoding '
  302. 'cannot encode all characters. '
  303. 'Set the LC_ALL environment variable to fix this.')
  304. self.params['restrictfilenames'] = True
  305. if isinstance(params.get('outtmpl'), bytes):
  306. self.report_warning(
  307. 'Parameter outtmpl is bytes, but should be a unicode string. '
  308. 'Put from __future__ import unicode_literals at the top of your code file or consider switching to Python 3.x.')
  309. self._setup_opener()
  310. if auto_init:
  311. self.print_debug_header()
  312. self.add_default_info_extractors()
  313. for pp_def_raw in self.params.get('postprocessors', []):
  314. pp_class = get_postprocessor(pp_def_raw['key'])
  315. pp_def = dict(pp_def_raw)
  316. del pp_def['key']
  317. pp = pp_class(self, **compat_kwargs(pp_def))
  318. self.add_post_processor(pp)
  319. for ph in self.params.get('progress_hooks', []):
  320. self.add_progress_hook(ph)
  321. def warn_if_short_id(self, argv):
  322. # short YouTube ID starting with dash?
  323. idxs = [
  324. i for i, a in enumerate(argv)
  325. if re.match(r'^-[0-9A-Za-z_-]{10}$', a)]
  326. if idxs:
  327. correct_argv = (
  328. ['youtube-dl'] +
  329. [a for i, a in enumerate(argv) if i not in idxs] +
  330. ['--'] + [argv[i] for i in idxs]
  331. )
  332. self.report_warning(
  333. 'Long argument string detected. '
  334. 'Use -- to separate parameters and URLs, like this:\n%s\n' %
  335. args_to_str(correct_argv))
  336. def add_info_extractor(self, ie):
  337. """Add an InfoExtractor object to the end of the list."""
  338. self._ies.append(ie)
  339. self._ies_instances[ie.ie_key()] = ie
  340. ie.set_downloader(self)
  341. def get_info_extractor(self, ie_key):
  342. """
  343. Get an instance of an IE with name ie_key, it will try to get one from
  344. the _ies list, if there's no instance it will create a new one and add
  345. it to the extractor list.
  346. """
  347. ie = self._ies_instances.get(ie_key)
  348. if ie is None:
  349. ie = get_info_extractor(ie_key)()
  350. self.add_info_extractor(ie)
  351. return ie
  352. def add_default_info_extractors(self):
  353. """
  354. Add the InfoExtractors returned by gen_extractors to the end of the list
  355. """
  356. for ie in gen_extractors():
  357. self.add_info_extractor(ie)
  358. def add_post_processor(self, pp):
  359. """Add a PostProcessor object to the end of the chain."""
  360. self._pps.append(pp)
  361. pp.set_downloader(self)
  362. def add_progress_hook(self, ph):
  363. """Add the progress hook (currently only for the file downloader)"""
  364. self._progress_hooks.append(ph)
  365. def _bidi_workaround(self, message):
  366. if not hasattr(self, '_output_channel'):
  367. return message
  368. assert hasattr(self, '_output_process')
  369. assert isinstance(message, compat_str)
  370. line_count = message.count('\n') + 1
  371. self._output_process.stdin.write((message + '\n').encode('utf-8'))
  372. self._output_process.stdin.flush()
  373. res = ''.join(self._output_channel.readline().decode('utf-8')
  374. for _ in range(line_count))
  375. return res[:-len('\n')]
  376. def to_screen(self, message, skip_eol=False):
  377. """Print message to stdout if not in quiet mode."""
  378. return self.to_stdout(message, skip_eol, check_quiet=True)
  379. def _write_string(self, s, out=None):
  380. write_string(s, out=out, encoding=self.params.get('encoding'))
  381. def to_stdout(self, message, skip_eol=False, check_quiet=False):
  382. """Print message to stdout if not in quiet mode."""
  383. if self.params.get('logger'):
  384. self.params['logger'].debug(message)
  385. elif not check_quiet or not self.params.get('quiet', False):
  386. message = self._bidi_workaround(message)
  387. terminator = ['\n', ''][skip_eol]
  388. output = message + terminator
  389. self._write_string(output, self._screen_file)
  390. def to_stderr(self, message):
  391. """Print message to stderr."""
  392. assert isinstance(message, compat_str)
  393. if self.params.get('logger'):
  394. self.params['logger'].error(message)
  395. else:
  396. message = self._bidi_workaround(message)
  397. output = message + '\n'
  398. self._write_string(output, self._err_file)
  399. def to_console_title(self, message):
  400. if not self.params.get('consoletitle', False):
  401. return
  402. if os.name == 'nt' and ctypes.windll.kernel32.GetConsoleWindow():
  403. # c_wchar_p() might not be necessary if `message` is
  404. # already of type unicode()
  405. ctypes.windll.kernel32.SetConsoleTitleW(ctypes.c_wchar_p(message))
  406. elif 'TERM' in os.environ:
  407. self._write_string('\033]0;%s\007' % message, self._screen_file)
  408. def save_console_title(self):
  409. if not self.params.get('consoletitle', False):
  410. return
  411. if 'TERM' in os.environ:
  412. # Save the title on stack
  413. self._write_string('\033[22;0t', self._screen_file)
  414. def restore_console_title(self):
  415. if not self.params.get('consoletitle', False):
  416. return
  417. if 'TERM' in os.environ:
  418. # Restore the title from stack
  419. self._write_string('\033[23;0t', self._screen_file)
  420. def __enter__(self):
  421. self.save_console_title()
  422. return self
  423. def __exit__(self, *args):
  424. self.restore_console_title()
  425. if self.params.get('cookiefile') is not None:
  426. self.cookiejar.save()
  427. def trouble(self, message=None, tb=None):
  428. """Determine action to take when a download problem appears.
  429. Depending on if the downloader has been configured to ignore
  430. download errors or not, this method may throw an exception or
  431. not when errors are found, after printing the message.
  432. tb, if given, is additional traceback information.
  433. """
  434. if message is not None:
  435. self.to_stderr(message)
  436. if self.params.get('verbose'):
  437. if tb is None:
  438. if sys.exc_info()[0]: # if .trouble has been called from an except block
  439. tb = ''
  440. if hasattr(sys.exc_info()[1], 'exc_info') and sys.exc_info()[1].exc_info[0]:
  441. tb += ''.join(traceback.format_exception(*sys.exc_info()[1].exc_info))
  442. tb += compat_str(traceback.format_exc())
  443. else:
  444. tb_data = traceback.format_list(traceback.extract_stack())
  445. tb = ''.join(tb_data)
  446. self.to_stderr(tb)
  447. if not self.params.get('ignoreerrors', False):
  448. if sys.exc_info()[0] and hasattr(sys.exc_info()[1], 'exc_info') and sys.exc_info()[1].exc_info[0]:
  449. exc_info = sys.exc_info()[1].exc_info
  450. else:
  451. exc_info = sys.exc_info()
  452. raise DownloadError(message, exc_info)
  453. self._download_retcode = 1
  454. def report_warning(self, message):
  455. '''
  456. Print the message to stderr, it will be prefixed with 'WARNING:'
  457. If stderr is a tty file the 'WARNING:' will be colored
  458. '''
  459. if self.params.get('logger') is not None:
  460. self.params['logger'].warning(message)
  461. else:
  462. if self.params.get('no_warnings'):
  463. return
  464. if not self.params.get('no_color') and self._err_file.isatty() and os.name != 'nt':
  465. _msg_header = '\033[0;33mWARNING:\033[0m'
  466. else:
  467. _msg_header = 'WARNING:'
  468. warning_message = '%s %s' % (_msg_header, message)
  469. self.to_stderr(warning_message)
  470. def report_error(self, message, tb=None):
  471. '''
  472. Do the same as trouble, but prefixes the message with 'ERROR:', colored
  473. in red if stderr is a tty file.
  474. '''
  475. if not self.params.get('no_color') and self._err_file.isatty() and os.name != 'nt':
  476. _msg_header = '\033[0;31mERROR:\033[0m'
  477. else:
  478. _msg_header = 'ERROR:'
  479. error_message = '%s %s' % (_msg_header, message)
  480. self.trouble(error_message, tb)
  481. def report_file_already_downloaded(self, file_name):
  482. """Report file has already been fully downloaded."""
  483. try:
  484. self.to_screen('[download] %s has already been downloaded' % file_name)
  485. except UnicodeEncodeError:
  486. self.to_screen('[download] The file has already been downloaded')
  487. def prepare_filename(self, info_dict):
  488. """Generate the output filename."""
  489. try:
  490. template_dict = dict(info_dict)
  491. template_dict['epoch'] = int(time.time())
  492. autonumber_size = self.params.get('autonumber_size')
  493. if autonumber_size is None:
  494. autonumber_size = 5
  495. autonumber_templ = '%0' + str(autonumber_size) + 'd'
  496. template_dict['autonumber'] = autonumber_templ % self._num_downloads
  497. if template_dict.get('playlist_index') is not None:
  498. template_dict['playlist_index'] = '%0*d' % (len(str(template_dict['n_entries'])), template_dict['playlist_index'])
  499. if template_dict.get('resolution') is None:
  500. if template_dict.get('width') and template_dict.get('height'):
  501. template_dict['resolution'] = '%dx%d' % (template_dict['width'], template_dict['height'])
  502. elif template_dict.get('height'):
  503. template_dict['resolution'] = '%sp' % template_dict['height']
  504. elif template_dict.get('width'):
  505. template_dict['resolution'] = '?x%d' % template_dict['width']
  506. sanitize = lambda k, v: sanitize_filename(
  507. compat_str(v),
  508. restricted=self.params.get('restrictfilenames'),
  509. is_id=(k == 'id'))
  510. template_dict = dict((k, sanitize(k, v))
  511. for k, v in template_dict.items()
  512. if v is not None)
  513. template_dict = collections.defaultdict(lambda: 'NA', template_dict)
  514. outtmpl = sanitize_path(self.params.get('outtmpl', DEFAULT_OUTTMPL))
  515. tmpl = compat_expanduser(outtmpl)
  516. filename = tmpl % template_dict
  517. # Temporary fix for #4787
  518. # 'Treat' all problem characters by passing filename through preferredencoding
  519. # to workaround encoding issues with subprocess on python2 @ Windows
  520. if sys.version_info < (3, 0) and sys.platform == 'win32':
  521. filename = encodeFilename(filename, True).decode(preferredencoding())
  522. return filename
  523. except ValueError as err:
  524. self.report_error('Error in output template: ' + str(err) + ' (encoding: ' + repr(preferredencoding()) + ')')
  525. return None
  526. def _match_entry(self, info_dict, incomplete):
  527. """ Returns None iff the file should be downloaded """
  528. video_title = info_dict.get('title', info_dict.get('id', 'video'))
  529. if 'title' in info_dict:
  530. # This can happen when we're just evaluating the playlist
  531. title = info_dict['title']
  532. matchtitle = self.params.get('matchtitle', False)
  533. if matchtitle:
  534. if not re.search(matchtitle, title, re.IGNORECASE):
  535. return '"' + title + '" title did not match pattern "' + matchtitle + '"'
  536. rejecttitle = self.params.get('rejecttitle', False)
  537. if rejecttitle:
  538. if re.search(rejecttitle, title, re.IGNORECASE):
  539. return '"' + title + '" title matched reject pattern "' + rejecttitle + '"'
  540. date = info_dict.get('upload_date', None)
  541. if date is not None:
  542. dateRange = self.params.get('daterange', DateRange())
  543. if date not in dateRange:
  544. return '%s upload date is not in range %s' % (date_from_str(date).isoformat(), dateRange)
  545. view_count = info_dict.get('view_count', None)
  546. if view_count is not None:
  547. min_views = self.params.get('min_views')
  548. if min_views is not None and view_count < min_views:
  549. return 'Skipping %s, because it has not reached minimum view count (%d/%d)' % (video_title, view_count, min_views)
  550. max_views = self.params.get('max_views')
  551. if max_views is not None and view_count > max_views:
  552. return 'Skipping %s, because it has exceeded the maximum view count (%d/%d)' % (video_title, view_count, max_views)
  553. if age_restricted(info_dict.get('age_limit'), self.params.get('age_limit')):
  554. return 'Skipping "%s" because it is age restricted' % video_title
  555. if self.in_download_archive(info_dict):
  556. return '%s has already been recorded in archive' % video_title
  557. if not incomplete:
  558. match_filter = self.params.get('match_filter')
  559. if match_filter is not None:
  560. ret = match_filter(info_dict)
  561. if ret is not None:
  562. return ret
  563. return None
  564. @staticmethod
  565. def add_extra_info(info_dict, extra_info):
  566. '''Set the keys from extra_info in info dict if they are missing'''
  567. for key, value in extra_info.items():
  568. info_dict.setdefault(key, value)
  569. def extract_info(self, url, download=True, ie_key=None, extra_info={},
  570. process=True, force_generic_extractor=False):
  571. '''
  572. Returns a list with a dictionary for each video we find.
  573. If 'download', also downloads the videos.
  574. extra_info is a dict containing the extra values to add to each result
  575. '''
  576. if not ie_key and force_generic_extractor:
  577. ie_key = 'Generic'
  578. if ie_key:
  579. ies = [self.get_info_extractor(ie_key)]
  580. else:
  581. ies = self._ies
  582. for ie in ies:
  583. if not ie.suitable(url):
  584. continue
  585. if not ie.working():
  586. self.report_warning('The program functionality for this site has been marked as broken, '
  587. 'and will probably not work.')
  588. try:
  589. ie_result = ie.extract(url)
  590. if ie_result is None: # Finished already (backwards compatibility; listformats and friends should be moved here)
  591. break
  592. if isinstance(ie_result, list):
  593. # Backwards compatibility: old IE result format
  594. ie_result = {
  595. '_type': 'compat_list',
  596. 'entries': ie_result,
  597. }
  598. self.add_default_extra_info(ie_result, ie, url)
  599. if process:
  600. return self.process_ie_result(ie_result, download, extra_info)
  601. else:
  602. return ie_result
  603. except ExtractorError as de: # An error we somewhat expected
  604. self.report_error(compat_str(de), de.format_traceback())
  605. break
  606. except MaxDownloadsReached:
  607. raise
  608. except Exception as e:
  609. if self.params.get('ignoreerrors', False):
  610. self.report_error(compat_str(e), tb=compat_str(traceback.format_exc()))
  611. break
  612. else:
  613. raise
  614. else:
  615. self.report_error('no suitable InfoExtractor for URL %s' % url)
  616. def add_default_extra_info(self, ie_result, ie, url):
  617. self.add_extra_info(ie_result, {
  618. 'extractor': ie.IE_NAME,
  619. 'webpage_url': url,
  620. 'webpage_url_basename': url_basename(url),
  621. 'extractor_key': ie.ie_key(),
  622. })
  623. def process_ie_result(self, ie_result, download=True, extra_info={}):
  624. """
  625. Take the result of the ie(may be modified) and resolve all unresolved
  626. references (URLs, playlist items).
  627. It will also download the videos if 'download'.
  628. Returns the resolved ie_result.
  629. """
  630. result_type = ie_result.get('_type', 'video')
  631. if result_type in ('url', 'url_transparent'):
  632. extract_flat = self.params.get('extract_flat', False)
  633. if ((extract_flat == 'in_playlist' and 'playlist' in extra_info) or
  634. extract_flat is True):
  635. if self.params.get('forcejson', False):
  636. self.to_stdout(json.dumps(ie_result))
  637. return ie_result
  638. if result_type == 'video':
  639. self.add_extra_info(ie_result, extra_info)
  640. return self.process_video_result(ie_result, download=download)
  641. elif result_type == 'url':
  642. # We have to add extra_info to the results because it may be
  643. # contained in a playlist
  644. return self.extract_info(ie_result['url'],
  645. download,
  646. ie_key=ie_result.get('ie_key'),
  647. extra_info=extra_info)
  648. elif result_type == 'url_transparent':
  649. # Use the information from the embedding page
  650. info = self.extract_info(
  651. ie_result['url'], ie_key=ie_result.get('ie_key'),
  652. extra_info=extra_info, download=False, process=False)
  653. force_properties = dict(
  654. (k, v) for k, v in ie_result.items() if v is not None)
  655. for f in ('_type', 'url'):
  656. if f in force_properties:
  657. del force_properties[f]
  658. new_result = info.copy()
  659. new_result.update(force_properties)
  660. assert new_result.get('_type') != 'url_transparent'
  661. return self.process_ie_result(
  662. new_result, download=download, extra_info=extra_info)
  663. elif result_type == 'playlist' or result_type == 'multi_video':
  664. # We process each entry in the playlist
  665. playlist = ie_result.get('title', None) or ie_result.get('id', None)
  666. self.to_screen('[download] Downloading playlist: %s' % playlist)
  667. playlist_results = []
  668. playliststart = self.params.get('playliststart', 1) - 1
  669. playlistend = self.params.get('playlistend', None)
  670. # For backwards compatibility, interpret -1 as whole list
  671. if playlistend == -1:
  672. playlistend = None
  673. playlistitems_str = self.params.get('playlist_items', None)
  674. playlistitems = None
  675. if playlistitems_str is not None:
  676. def iter_playlistitems(format):
  677. for string_segment in format.split(','):
  678. if '-' in string_segment:
  679. start, end = string_segment.split('-')
  680. for item in range(int(start), int(end) + 1):
  681. yield int(item)
  682. else:
  683. yield int(string_segment)
  684. playlistitems = iter_playlistitems(playlistitems_str)
  685. ie_entries = ie_result['entries']
  686. if isinstance(ie_entries, list):
  687. n_all_entries = len(ie_entries)
  688. if playlistitems:
  689. entries = [
  690. ie_entries[i - 1] for i in playlistitems
  691. if -n_all_entries <= i - 1 < n_all_entries]
  692. else:
  693. entries = ie_entries[playliststart:playlistend]
  694. n_entries = len(entries)
  695. self.to_screen(
  696. "[%s] playlist %s: Collected %d video ids (downloading %d of them)" %
  697. (ie_result['extractor'], playlist, n_all_entries, n_entries))
  698. elif isinstance(ie_entries, PagedList):
  699. if playlistitems:
  700. entries = []
  701. for item in playlistitems:
  702. entries.extend(ie_entries.getslice(
  703. item - 1, item
  704. ))
  705. else:
  706. entries = ie_entries.getslice(
  707. playliststart, playlistend)
  708. n_entries = len(entries)
  709. self.to_screen(
  710. "[%s] playlist %s: Downloading %d videos" %
  711. (ie_result['extractor'], playlist, n_entries))
  712. else: # iterable
  713. if playlistitems:
  714. entry_list = list(ie_entries)
  715. entries = [entry_list[i - 1] for i in playlistitems]
  716. else:
  717. entries = list(itertools.islice(
  718. ie_entries, playliststart, playlistend))
  719. n_entries = len(entries)
  720. self.to_screen(
  721. "[%s] playlist %s: Downloading %d videos" %
  722. (ie_result['extractor'], playlist, n_entries))
  723. if self.params.get('playlistreverse', False):
  724. entries = entries[::-1]
  725. for i, entry in enumerate(entries, 1):
  726. self.to_screen('[download] Downloading video %s of %s' % (i, n_entries))
  727. extra = {
  728. 'n_entries': n_entries,
  729. 'playlist': playlist,
  730. 'playlist_id': ie_result.get('id'),
  731. 'playlist_title': ie_result.get('title'),
  732. 'playlist_index': i + playliststart,
  733. 'extractor': ie_result['extractor'],
  734. 'webpage_url': ie_result['webpage_url'],
  735. 'webpage_url_basename': url_basename(ie_result['webpage_url']),
  736. 'extractor_key': ie_result['extractor_key'],
  737. }
  738. reason = self._match_entry(entry, incomplete=True)
  739. if reason is not None:
  740. self.to_screen('[download] ' + reason)
  741. continue
  742. entry_result = self.process_ie_result(entry,
  743. download=download,
  744. extra_info=extra)
  745. playlist_results.append(entry_result)
  746. ie_result['entries'] = playlist_results
  747. return ie_result
  748. elif result_type == 'compat_list':
  749. self.report_warning(
  750. 'Extractor %s returned a compat_list result. '
  751. 'It needs to be updated.' % ie_result.get('extractor'))
  752. def _fixup(r):
  753. self.add_extra_info(
  754. r,
  755. {
  756. 'extractor': ie_result['extractor'],
  757. 'webpage_url': ie_result['webpage_url'],
  758. 'webpage_url_basename': url_basename(ie_result['webpage_url']),
  759. 'extractor_key': ie_result['extractor_key'],
  760. }
  761. )
  762. return r
  763. ie_result['entries'] = [
  764. self.process_ie_result(_fixup(r), download, extra_info)
  765. for r in ie_result['entries']
  766. ]
  767. return ie_result
  768. else:
  769. raise Exception('Invalid result type: %s' % result_type)
  770. def _apply_format_filter(self, format_spec, available_formats):
  771. " Returns a tuple of the remaining format_spec and filtered formats "
  772. OPERATORS = {
  773. '<': operator.lt,
  774. '<=': operator.le,
  775. '>': operator.gt,
  776. '>=': operator.ge,
  777. '=': operator.eq,
  778. '!=': operator.ne,
  779. }
  780. operator_rex = re.compile(r'''(?x)\s*\[
  781. (?P<key>width|height|tbr|abr|vbr|asr|filesize|fps)
  782. \s*(?P<op>%s)(?P<none_inclusive>\s*\?)?\s*
  783. (?P<value>[0-9.]+(?:[kKmMgGtTpPeEzZyY]i?[Bb]?)?)
  784. \]$
  785. ''' % '|'.join(map(re.escape, OPERATORS.keys())))
  786. m = operator_rex.search(format_spec)
  787. if m:
  788. try:
  789. comparison_value = int(m.group('value'))
  790. except ValueError:
  791. comparison_value = parse_filesize(m.group('value'))
  792. if comparison_value is None:
  793. comparison_value = parse_filesize(m.group('value') + 'B')
  794. if comparison_value is None:
  795. raise ValueError(
  796. 'Invalid value %r in format specification %r' % (
  797. m.group('value'), format_spec))
  798. op = OPERATORS[m.group('op')]
  799. if not m:
  800. STR_OPERATORS = {
  801. '=': operator.eq,
  802. '!=': operator.ne,
  803. }
  804. str_operator_rex = re.compile(r'''(?x)\s*\[
  805. \s*(?P<key>ext|acodec|vcodec|container|protocol)
  806. \s*(?P<op>%s)(?P<none_inclusive>\s*\?)?
  807. \s*(?P<value>[a-zA-Z0-9_-]+)
  808. \s*\]$
  809. ''' % '|'.join(map(re.escape, STR_OPERATORS.keys())))
  810. m = str_operator_rex.search(format_spec)
  811. if m:
  812. comparison_value = m.group('value')
  813. op = STR_OPERATORS[m.group('op')]
  814. if not m:
  815. raise ValueError('Invalid format specification %r' % format_spec)
  816. def _filter(f):
  817. actual_value = f.get(m.group('key'))
  818. if actual_value is None:
  819. return m.group('none_inclusive')
  820. return op(actual_value, comparison_value)
  821. new_formats = [f for f in available_formats if _filter(f)]
  822. new_format_spec = format_spec[:-len(m.group(0))]
  823. if not new_format_spec:
  824. new_format_spec = 'best'
  825. return (new_format_spec, new_formats)
  826. def select_format(self, format_spec, available_formats):
  827. while format_spec.endswith(']'):
  828. format_spec, available_formats = self._apply_format_filter(
  829. format_spec, available_formats)
  830. if not available_formats:
  831. return None
  832. if format_spec in ['best', 'worst', None]:
  833. format_idx = 0 if format_spec == 'worst' else -1
  834. audiovideo_formats = [
  835. f for f in available_formats
  836. if f.get('vcodec') != 'none' and f.get('acodec') != 'none']
  837. if audiovideo_formats:
  838. return audiovideo_formats[format_idx]
  839. # for audio only (soundcloud) or video only (imgur) urls, select the best/worst audio format
  840. elif (all(f.get('acodec') != 'none' for f in available_formats) or
  841. all(f.get('vcodec') != 'none' for f in available_formats)):
  842. return available_formats[format_idx]
  843. elif format_spec == 'bestaudio':
  844. audio_formats = [
  845. f for f in available_formats
  846. if f.get('vcodec') == 'none']
  847. if audio_formats:
  848. return audio_formats[-1]
  849. elif format_spec == 'worstaudio':
  850. audio_formats = [
  851. f for f in available_formats
  852. if f.get('vcodec') == 'none']
  853. if audio_formats:
  854. return audio_formats[0]
  855. elif format_spec == 'bestvideo':
  856. video_formats = [
  857. f for f in available_formats
  858. if f.get('acodec') == 'none']
  859. if video_formats:
  860. return video_formats[-1]
  861. elif format_spec == 'worstvideo':
  862. video_formats = [
  863. f for f in available_formats
  864. if f.get('acodec') == 'none']
  865. if video_formats:
  866. return video_formats[0]
  867. else:
  868. extensions = ['mp4', 'flv', 'webm', '3gp', 'm4a', 'mp3', 'ogg', 'aac', 'wav']
  869. if format_spec in extensions:
  870. filter_f = lambda f: f['ext'] == format_spec
  871. else:
  872. filter_f = lambda f: f['format_id'] == format_spec
  873. matches = list(filter(filter_f, available_formats))
  874. if matches:
  875. return matches[-1]
  876. return None
  877. def _calc_headers(self, info_dict):
  878. res = std_headers.copy()
  879. add_headers = info_dict.get('http_headers')
  880. if add_headers:
  881. res.update(add_headers)
  882. cookies = self._calc_cookies(info_dict)
  883. if cookies:
  884. res['Cookie'] = cookies
  885. return res
  886. def _calc_cookies(self, info_dict):
  887. pr = compat_urllib_request.Request(info_dict['url'])
  888. self.cookiejar.add_cookie_header(pr)
  889. return pr.get_header('Cookie')
  890. def process_video_result(self, info_dict, download=True):
  891. assert info_dict.get('_type', 'video') == 'video'
  892. if 'id' not in info_dict:
  893. raise ExtractorError('Missing "id" field in extractor result')
  894. if 'title' not in info_dict:
  895. raise ExtractorError('Missing "title" field in extractor result')
  896. if 'playlist' not in info_dict:
  897. # It isn't part of a playlist
  898. info_dict['playlist'] = None
  899. info_dict['playlist_index'] = None
  900. thumbnails = info_dict.get('thumbnails')
  901. if thumbnails is None:
  902. thumbnail = info_dict.get('thumbnail')
  903. if thumbnail:
  904. info_dict['thumbnails'] = thumbnails = [{'url': thumbnail}]
  905. if thumbnails:
  906. thumbnails.sort(key=lambda t: (
  907. t.get('preference'), t.get('width'), t.get('height'),
  908. t.get('id'), t.get('url')))
  909. for i, t in enumerate(thumbnails):
  910. if t.get('width') and t.get('height'):
  911. t['resolution'] = '%dx%d' % (t['width'], t['height'])
  912. if t.get('id') is None:
  913. t['id'] = '%d' % i
  914. if thumbnails and 'thumbnail' not in info_dict:
  915. info_dict['thumbnail'] = thumbnails[-1]['url']
  916. if 'display_id' not in info_dict and 'id' in info_dict:
  917. info_dict['display_id'] = info_dict['id']
  918. if info_dict.get('upload_date') is None and info_dict.get('timestamp') is not None:
  919. # Working around out-of-range timestamp values (e.g. negative ones on Windows,
  920. # see http://bugs.python.org/issue1646728)
  921. try:
  922. upload_date = datetime.datetime.utcfromtimestamp(info_dict['timestamp'])
  923. info_dict['upload_date'] = upload_date.strftime('%Y%m%d')
  924. except (ValueError, OverflowError, OSError):
  925. pass
  926. if self.params.get('listsubtitles', False):
  927. if 'automatic_captions' in info_dict:
  928. self.list_subtitles(info_dict['id'], info_dict.get('automatic_captions'), 'automatic captions')
  929. self.list_subtitles(info_dict['id'], info_dict.get('subtitles'), 'subtitles')
  930. return
  931. info_dict['requested_subtitles'] = self.process_subtitles(
  932. info_dict['id'], info_dict.get('subtitles'),
  933. info_dict.get('automatic_captions'))
  934. # We now pick which formats have to be downloaded
  935. if info_dict.get('formats') is None:
  936. # There's only one format available
  937. formats = [info_dict]
  938. else:
  939. formats = info_dict['formats']
  940. if not formats:
  941. raise ExtractorError('No video formats found!')
  942. formats_dict = {}
  943. # We check that all the formats have the format and format_id fields
  944. for i, format in enumerate(formats):
  945. if 'url' not in format:
  946. raise ExtractorError('Missing "url" key in result (index %d)' % i)
  947. if format.get('format_id') is None:
  948. format['format_id'] = compat_str(i)
  949. format_id = format['format_id']
  950. if format_id not in formats_dict:
  951. formats_dict[format_id] = []
  952. formats_dict[format_id].append(format)
  953. # Make sure all formats have unique format_id
  954. for format_id, ambiguous_formats in formats_dict.items():
  955. if len(ambiguous_formats) > 1:
  956. for i, format in enumerate(ambiguous_formats):
  957. format['format_id'] = '%s-%d' % (format_id, i)
  958. for i, format in enumerate(formats):
  959. if format.get('format') is None:
  960. format['format'] = '{id} - {res}{note}'.format(
  961. id=format['format_id'],
  962. res=self.format_resolution(format),
  963. note=' ({0})'.format(format['format_note']) if format.get('format_note') is not None else '',
  964. )
  965. # Automatically determine file extension if missing
  966. if 'ext' not in format:
  967. format['ext'] = determine_ext(format['url']).lower()
  968. # Add HTTP headers, so that external programs can use them from the
  969. # json output
  970. full_format_info = info_dict.copy()
  971. full_format_info.update(format)
  972. format['http_headers'] = self._calc_headers(full_format_info)
  973. # TODO Central sorting goes here
  974. if formats[0] is not info_dict:
  975. # only set the 'formats' fields if the original info_dict list them
  976. # otherwise we end up with a circular reference, the first (and unique)
  977. # element in the 'formats' field in info_dict is info_dict itself,
  978. # wich can't be exported to json
  979. info_dict['formats'] = formats
  980. if self.params.get('listformats'):
  981. self.list_formats(info_dict)
  982. return
  983. if self.params.get('list_thumbnails'):
  984. self.list_thumbnails(info_dict)
  985. return
  986. req_format = self.params.get('format')
  987. if req_format is None:
  988. req_format_list = []
  989. if (self.params.get('outtmpl', DEFAULT_OUTTMPL) != '-' and
  990. info_dict['extractor'] in ['youtube', 'ted']):
  991. merger = FFmpegMergerPP(self)
  992. if merger.available and merger.can_merge():
  993. req_format_list.append('bestvideo+bestaudio')
  994. req_format_list.append('best')
  995. req_format = '/'.join(req_format_list)
  996. formats_to_download = []
  997. if req_format == 'all':
  998. formats_to_download = formats
  999. else:
  1000. for rfstr in req_format.split(','):
  1001. # We can accept formats requested in the format: 34/5/best, we pick
  1002. # the first that is available, starting from left
  1003. req_formats = rfstr.split('/')
  1004. for rf in req_formats:
  1005. if re.match(r'.+?\+.+?', rf) is not None:
  1006. # Two formats have been requested like '137+139'
  1007. format_1, format_2 = rf.split('+')
  1008. formats_info = (self.select_format(format_1, formats),
  1009. self.select_format(format_2, formats))
  1010. if all(formats_info):
  1011. # The first format must contain the video and the
  1012. # second the audio
  1013. if formats_info[0].get('vcodec') == 'none':
  1014. self.report_error('The first format must '
  1015. 'contain the video, try using '
  1016. '"-f %s+%s"' % (format_2, format_1))
  1017. return
  1018. output_ext = (
  1019. formats_info[0]['ext']
  1020. if self.params.get('merge_output_format') is None
  1021. else self.params['merge_output_format'])
  1022. selected_format = {
  1023. 'requested_formats': formats_info,
  1024. 'format': '%s+%s' % (formats_info[0].get('format'),
  1025. formats_info[1].get('format')),
  1026. 'format_id': '%s+%s' % (formats_info[0].get('format_id'),
  1027. formats_info[1].get('format_id')),
  1028. 'width': formats_info[0].get('width'),
  1029. 'height': formats_info[0].get('height'),
  1030. 'resolution': formats_info[0].get('resolution'),
  1031. 'fps': formats_info[0].get('fps'),
  1032. 'vcodec': formats_info[0].get('vcodec'),
  1033. 'vbr': formats_info[0].get('vbr'),
  1034. 'stretched_ratio': formats_info[0].get('stretched_ratio'),
  1035. 'acodec': formats_info[1].get('acodec'),
  1036. 'abr': formats_info[1].get('abr'),
  1037. 'ext': output_ext,
  1038. }
  1039. else:
  1040. selected_format = None
  1041. else:
  1042. selected_format = self.select_format(rf, formats)
  1043. if selected_format is not None:
  1044. formats_to_download.append(selected_format)
  1045. break
  1046. if not formats_to_download:
  1047. raise ExtractorError('requested format not available',
  1048. expected=True)
  1049. if download:
  1050. if len(formats_to_download) > 1:
  1051. self.to_screen('[info] %s: downloading video in %s formats' % (info_dict['id'], len(formats_to_download)))
  1052. for format in formats_to_download:
  1053. new_info = dict(info_dict)
  1054. new_info.update(format)
  1055. self.process_info(new_info)
  1056. # We update the info dict with the best quality format (backwards compatibility)
  1057. info_dict.update(formats_to_download[-1])
  1058. return info_dict
  1059. def process_subtitles(self, video_id, normal_subtitles, automatic_captions):
  1060. """Select the requested subtitles and their format"""
  1061. available_subs = {}
  1062. if normal_subtitles and self.params.get('writesubtitles'):
  1063. available_subs.update(normal_subtitles)
  1064. if automatic_captions and self.params.get('writeautomaticsub'):
  1065. for lang, cap_info in automatic_captions.items():
  1066. if lang not in available_subs:
  1067. available_subs[lang] = cap_info
  1068. if (not self.params.get('writesubtitles') and not
  1069. self.params.get('writeautomaticsub') or not
  1070. available_subs):
  1071. return None
  1072. if self.params.get('allsubtitles', False):
  1073. requested_langs = available_subs.keys()
  1074. else:
  1075. if self.params.get('subtitleslangs', False):
  1076. requested_langs = self.params.get('subtitleslangs')
  1077. elif 'en' in available_subs:
  1078. requested_langs = ['en']
  1079. else:
  1080. requested_langs = [list(available_subs.keys())[0]]
  1081. formats_query = self.params.get('subtitlesformat', 'best')
  1082. formats_preference = formats_query.split('/') if formats_query else []
  1083. subs = {}
  1084. for lang in requested_langs:
  1085. formats = available_subs.get(lang)
  1086. if formats is None:
  1087. self.report_warning('%s subtitles not available for %s' % (lang, video_id))
  1088. continue
  1089. for ext in formats_preference:
  1090. if ext == 'best':
  1091. f = formats[-1]
  1092. break
  1093. matches = list(filter(lambda f: f['ext'] == ext, formats))
  1094. if matches:
  1095. f = matches[-1]
  1096. break
  1097. else:
  1098. f = formats[-1]
  1099. self.report_warning(
  1100. 'No subtitle format found matching "%s" for language %s, '
  1101. 'using %s' % (formats_query, lang, f['ext']))
  1102. subs[lang] = f
  1103. return subs
  1104. def process_info(self, info_dict):
  1105. """Process a single resolved IE result."""
  1106. assert info_dict.get('_type', 'video') == 'video'
  1107. max_downloads = self.params.get('max_downloads')
  1108. if max_downloads is not None:
  1109. if self._num_downloads >= int(max_downloads):
  1110. raise MaxDownloadsReached()
  1111. info_dict['fulltitle'] = info_dict['title']
  1112. if len(info_dict['title']) > 200:
  1113. info_dict['title'] = info_dict['title'][:197] + '...'
  1114. if 'format' not in info_dict:
  1115. info_dict['format'] = info_dict['ext']
  1116. reason = self._match_entry(info_dict, incomplete=False)
  1117. if reason is not None:
  1118. self.to_screen('[download] ' + reason)
  1119. return
  1120. self._num_downloads += 1
  1121. info_dict['_filename'] = filename = self.prepare_filename(info_dict)
  1122. # Forced printings
  1123. if self.params.get('forcetitle', False):
  1124. self.to_stdout(info_dict['fulltitle'])
  1125. if self.params.get('forceid', False):
  1126. self.to_stdout(info_dict['id'])
  1127. if self.params.get('forceurl', False):
  1128. if info_dict.get('requested_formats') is not None:
  1129. for f in info_dict['requested_formats']:
  1130. self.to_stdout(f['url'] + f.get('play_path', ''))
  1131. else:
  1132. # For RTMP URLs, also include the playpath
  1133. self.to_stdout(info_dict['url'] + info_dict.get('play_path', ''))
  1134. if self.params.get('forcethumbnail', False) and info_dict.get('thumbnail') is not None:
  1135. self.to_stdout(info_dict['thumbnail'])
  1136. if self.params.get('forcedescription', False) and info_dict.get('description') is not None:
  1137. self.to_stdout(info_dict['description'])
  1138. if self.params.get('forcefilename', False) and filename is not None:
  1139. self.to_stdout(filename)
  1140. if self.params.get('forceduration', False) and info_dict.get('duration') is not None:
  1141. self.to_stdout(formatSeconds(info_dict['duration']))
  1142. if self.params.get('forceformat', False):
  1143. self.to_stdout(info_dict['format'])
  1144. if self.params.get('forcejson', False):
  1145. self.to_stdout(json.dumps(info_dict))
  1146. # Do nothing else if in simulate mode
  1147. if self.params.get('simulate', False):
  1148. return
  1149. if filename is None:
  1150. return
  1151. try:
  1152. dn = os.path.dirname(sanitize_path(encodeFilename(filename)))
  1153. if dn and not os.path.exists(dn):
  1154. os.makedirs(dn)
  1155. except (OSError, IOError) as err:
  1156. self.report_error('unable to create directory ' + compat_str(err))
  1157. return
  1158. if self.params.get('writedescription', False):
  1159. descfn = replace_extension(filename, 'description', info_dict.get('ext'))
  1160. if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(descfn)):
  1161. self.to_screen('[info] Video description is already present')
  1162. elif info_dict.get('description') is None:
  1163. self.report_warning('There\'s no description to write.')
  1164. else:
  1165. try:
  1166. self.to_screen('[info] Writing video description to: ' + descfn)
  1167. with io.open(encodeFilename(descfn), 'w', encoding='utf-8') as descfile:
  1168. descfile.write(info_dict['description'])
  1169. except (OSError, IOError):
  1170. self.report_error('Cannot write description file ' + descfn)
  1171. return
  1172. if self.params.get('writeannotations', False):
  1173. annofn = replace_extension(filename, 'annotations.xml', info_dict.get('ext'))
  1174. if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(annofn)):
  1175. self.to_screen('[info] Video annotations are already present')
  1176. else:
  1177. try:
  1178. self.to_screen('[info] Writing video annotations to: ' + annofn)
  1179. with io.open(encodeFilename(annofn), 'w', encoding='utf-8') as annofile:
  1180. annofile.write(info_dict['annotations'])
  1181. except (KeyError, TypeError):
  1182. self.report_warning('There are no annotations to write.')
  1183. except (OSError, IOError):
  1184. self.report_error('Cannot write annotations file: ' + annofn)
  1185. return
  1186. subtitles_are_requested = any([self.params.get('writesubtitles', False),
  1187. self.params.get('writeautomaticsub')])
  1188. if subtitles_are_requested and info_dict.get('requested_subtitles'):
  1189. # subtitles download errors are already managed as troubles in relevant IE
  1190. # that way it will silently go on when used with unsupporting IE
  1191. subtitles = info_dict['requested_subtitles']
  1192. ie = self.get_info_extractor(info_dict['extractor_key'])
  1193. for sub_lang, sub_info in subtitles.items():
  1194. sub_format = sub_info['ext']
  1195. if sub_info.get('data') is not None:
  1196. sub_data = sub_info['data']
  1197. else:
  1198. try:
  1199. sub_data = ie._download_webpage(
  1200. sub_info['url'], info_dict['id'], note=False)
  1201. except ExtractorError as err:
  1202. self.report_warning('Unable to download subtitle for "%s": %s' %
  1203. (sub_lang, compat_str(err.cause)))
  1204. continue
  1205. try:
  1206. sub_filename = subtitles_filename(filename, sub_lang, sub_format)
  1207. if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(sub_filename)):
  1208. self.to_screen('[info] Video subtitle %s.%s is already_present' % (sub_lang, sub_format))
  1209. else:
  1210. self.to_screen('[info] Writing video subtitles to: ' + sub_filename)
  1211. with io.open(encodeFilename(sub_filename), 'w', encoding='utf-8') as subfile:
  1212. subfile.write(sub_data)
  1213. except (OSError, IOError):
  1214. self.report_error('Cannot write subtitles file ' + sub_filename)
  1215. return
  1216. if self.params.get('writeinfojson', False):
  1217. infofn = replace_extension(filename, 'info.json', info_dict.get('ext'))
  1218. if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(infofn)):
  1219. self.to_screen('[info] Video description metadata is already present')
  1220. else:
  1221. self.to_screen('[info] Writing video description metadata as JSON to: ' + infofn)
  1222. try:
  1223. write_json_file(self.filter_requested_info(info_dict), infofn)
  1224. except (OSError, IOError):
  1225. self.report_error('Cannot write metadata to JSON file ' + infofn)
  1226. return
  1227. self._write_thumbnails(info_dict, filename)
  1228. if not self.params.get('skip_download', False):
  1229. try:
  1230. def dl(name, info):
  1231. fd = get_suitable_downloader(info, self.params)(self, self.params)
  1232. for ph in self._progress_hooks:
  1233. fd.add_progress_hook(ph)
  1234. if self.params.get('verbose'):
  1235. self.to_stdout('[debug] Invoking downloader on %r' % info.get('url'))
  1236. return fd.download(name, info)
  1237. if info_dict.get('requested_formats') is not None:
  1238. downloaded = []
  1239. success = True
  1240. merger = FFmpegMergerPP(self)
  1241. if not merger.available:
  1242. postprocessors = []
  1243. self.report_warning('You have requested multiple '
  1244. 'formats but ffmpeg or avconv are not installed.'
  1245. ' The formats won\'t be merged.')
  1246. else:
  1247. postprocessors = [merger]
  1248. def compatible_formats(formats):
  1249. video, audio = formats
  1250. # Check extension
  1251. video_ext, audio_ext = audio.get('ext'), video.get('ext')
  1252. if video_ext and audio_ext:
  1253. COMPATIBLE_EXTS = (
  1254. ('mp3', 'mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v'),
  1255. ('webm')
  1256. )
  1257. for exts in COMPATIBLE_EXTS:
  1258. if video_ext in exts and audio_ext in exts:
  1259. return True
  1260. # TODO: Check acodec/vcodec
  1261. return False
  1262. filename_real_ext = os.path.splitext(filename)[1][1:]
  1263. filename_wo_ext = (
  1264. os.path.splitext(filename)[0]
  1265. if filename_real_ext == info_dict['ext']
  1266. else filename)
  1267. requested_formats = info_dict['requested_formats']
  1268. if self.params.get('merge_output_format') is None and not compatible_formats(requested_formats):
  1269. info_dict['ext'] = 'mkv'
  1270. self.report_warning(
  1271. 'Requested formats are incompatible for merge and will be merged into mkv.')
  1272. # Ensure filename always has a correct extension for successful merge
  1273. filename = '%s.%s' % (filename_wo_ext, info_dict['ext'])
  1274. if os.path.exists(encodeFilename(filename)):
  1275. self.to_screen(
  1276. '[download] %s has already been downloaded and '
  1277. 'merged' % filename)
  1278. else:
  1279. for f in requested_formats:
  1280. new_info = dict(info_dict)
  1281. new_info.update(f)
  1282. fname = self.prepare_filename(new_info)
  1283. fname = prepend_extension(fname, 'f%s' % f['format_id'], new_info['ext'])
  1284. downloaded.append(fname)
  1285. partial_success = dl(fname, new_info)
  1286. success = success and partial_success
  1287. info_dict['__postprocessors'] = postprocessors
  1288. info_dict['__files_to_merge'] = downloaded
  1289. else:
  1290. # Just a single file
  1291. success = dl(filename, info_dict)
  1292. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  1293. self.report_error('unable to download video data: %s' % str(err))
  1294. return
  1295. except (OSError, IOError) as err:
  1296. raise UnavailableVideoError(err)
  1297. except (ContentTooShortError, ) as err:
  1298. self.report_error('content too short (expected %s bytes and served %s)' % (err.expected, err.downloaded))
  1299. return
  1300. if success:
  1301. # Fixup content
  1302. fixup_policy = self.params.get('fixup')
  1303. if fixup_policy is None:
  1304. fixup_policy = 'detect_or_warn'
  1305. stretched_ratio = info_dict.get('stretched_ratio')
  1306. if stretched_ratio is not None and stretched_ratio != 1:
  1307. if fixup_policy == 'warn':
  1308. self.report_warning('%s: Non-uniform pixel ratio (%s)' % (
  1309. info_dict['id'], stretched_ratio))
  1310. elif fixup_policy == 'detect_or_warn':
  1311. stretched_pp = FFmpegFixupStretchedPP(self)
  1312. if stretched_pp.available:
  1313. info_dict.setdefault('__postprocessors', [])
  1314. info_dict['__postprocessors'].append(stretched_pp)
  1315. else:
  1316. self.report_warning(
  1317. '%s: Non-uniform pixel ratio (%s). Install ffmpeg or avconv to fix this automatically.' % (
  1318. info_dict['id'], stretched_ratio))
  1319. else:
  1320. assert fixup_policy in ('ignore', 'never')
  1321. if info_dict.get('requested_formats') is None and info_dict.get('container') == 'm4a_dash':
  1322. if fixup_policy == 'warn':
  1323. self.report_warning('%s: writing DASH m4a. Only some players support this container.' % (
  1324. info_dict['id']))
  1325. elif fixup_policy == 'detect_or_warn':
  1326. fixup_pp = FFmpegFixupM4aPP(self)
  1327. if fixup_pp.available:
  1328. info_dict.setdefault('__postprocessors', [])
  1329. info_dict['__postprocessors'].append(fixup_pp)
  1330. else:
  1331. self.report_warning(
  1332. '%s: writing DASH m4a. Only some players support this container. Install ffmpeg or avconv to fix this automatically.' % (
  1333. info_dict['id']))
  1334. else:
  1335. assert fixup_policy in ('ignore', 'never')
  1336. try:
  1337. self.post_process(filename, info_dict)
  1338. except (PostProcessingError) as err:
  1339. self.report_error('postprocessing: %s' % str(err))
  1340. return
  1341. self.record_download_archive(info_dict)
  1342. def download(self, url_list):
  1343. """Download a given list of URLs."""
  1344. outtmpl = self.params.get('outtmpl', DEFAULT_OUTTMPL)
  1345. if (len(url_list) > 1 and
  1346. '%' not in outtmpl and
  1347. self.params.get('max_downloads') != 1):
  1348. raise SameFileError(outtmpl)
  1349. for url in url_list:
  1350. try:
  1351. # It also downloads the videos
  1352. res = self.extract_info(
  1353. url, force_generic_extractor=self.params.get('force_generic_extractor', False))
  1354. except UnavailableVideoError:
  1355. self.report_error('unable to download video')
  1356. except MaxDownloadsReached:
  1357. self.to_screen('[info] Maximum number of downloaded files reached.')
  1358. raise
  1359. else:
  1360. if self.params.get('dump_single_json', False):
  1361. self.to_stdout(json.dumps(res))
  1362. return self._download_retcode
  1363. def download_with_info_file(self, info_filename):
  1364. with contextlib.closing(fileinput.FileInput(
  1365. [info_filename], mode='r',
  1366. openhook=fileinput.hook_encoded('utf-8'))) as f:
  1367. # FileInput doesn't have a read method, we can't call json.load
  1368. info = self.filter_requested_info(json.loads('\n'.join(f)))
  1369. try:
  1370. self.process_ie_result(info, download=True)
  1371. except DownloadError:
  1372. webpage_url = info.get('webpage_url')
  1373. if webpage_url is not None:
  1374. self.report_warning('The info failed to download, trying with "%s"' % webpage_url)
  1375. return self.download([webpage_url])
  1376. else:
  1377. raise
  1378. return self._download_retcode
  1379. @staticmethod
  1380. def filter_requested_info(info_dict):
  1381. return dict(
  1382. (k, v) for k, v in info_dict.items()
  1383. if k not in ['requested_formats', 'requested_subtitles'])
  1384. def post_process(self, filename, ie_info):
  1385. """Run all the postprocessors on the given file."""
  1386. info = dict(ie_info)
  1387. info['filepath'] = filename
  1388. pps_chain = []
  1389. if ie_info.get('__postprocessors') is not None:
  1390. pps_chain.extend(ie_info['__postprocessors'])
  1391. pps_chain.extend(self._pps)
  1392. for pp in pps_chain:
  1393. files_to_delete = []
  1394. try:
  1395. files_to_delete, info = pp.run(info)
  1396. except PostProcessingError as e:
  1397. self.report_error(e.msg)
  1398. if files_to_delete and not self.params.get('keepvideo', False):
  1399. for old_filename in files_to_delete:
  1400. self.to_screen('Deleting original file %s (pass -k to keep)' % old_filename)
  1401. try:
  1402. os.remove(encodeFilename(old_filename))
  1403. except (IOError, OSError):
  1404. self.report_warning('Unable to remove downloaded original file')
  1405. def _make_archive_id(self, info_dict):
  1406. # Future-proof against any change in case
  1407. # and backwards compatibility with prior versions
  1408. extractor = info_dict.get('extractor_key')
  1409. if extractor is None:
  1410. if 'id' in info_dict:
  1411. extractor = info_dict.get('ie_key') # key in a playlist
  1412. if extractor is None:
  1413. return None # Incomplete video information
  1414. return extractor.lower() + ' ' + info_dict['id']
  1415. def in_download_archive(self, info_dict):
  1416. fn = self.params.get('download_archive')
  1417. if fn is None:
  1418. return False
  1419. vid_id = self._make_archive_id(info_dict)
  1420. if vid_id is None:
  1421. return False # Incomplete video information
  1422. try:
  1423. with locked_file(fn, 'r', encoding='utf-8') as archive_file:
  1424. for line in archive_file:
  1425. if line.strip() == vid_id:
  1426. return True
  1427. except IOError as ioe:
  1428. if ioe.errno != errno.ENOENT:
  1429. raise
  1430. return False
  1431. def record_download_archive(self, info_dict):
  1432. fn = self.params.get('download_archive')
  1433. if fn is None:
  1434. return
  1435. vid_id = self._make_archive_id(info_dict)
  1436. assert vid_id
  1437. with locked_file(fn, 'a', encoding='utf-8') as archive_file:
  1438. archive_file.write(vid_id + '\n')
  1439. @staticmethod
  1440. def format_resolution(format, default='unknown'):
  1441. if format.get('vcodec') == 'none':
  1442. return 'audio only'
  1443. if format.get('resolution') is not None:
  1444. return format['resolution']
  1445. if format.get('height') is not None:
  1446. if format.get('width') is not None:
  1447. res = '%sx%s' % (format['width'], format['height'])
  1448. else:
  1449. res = '%sp' % format['height']
  1450. elif format.get('width') is not None:
  1451. res = '?x%d' % format['width']
  1452. else:
  1453. res = default
  1454. return res
  1455. def _format_note(self, fdict):
  1456. res = ''
  1457. if fdict.get('ext') in ['f4f', 'f4m']:
  1458. res += '(unsupported) '
  1459. if fdict.get('format_note') is not None:
  1460. res += fdict['format_note'] + ' '
  1461. if fdict.get('tbr') is not None:
  1462. res += '%4dk ' % fdict['tbr']
  1463. if fdict.get('container') is not None:
  1464. if res:
  1465. res += ', '
  1466. res += '%s container' % fdict['container']
  1467. if (fdict.get('vcodec') is not None and
  1468. fdict.get('vcodec') != 'none'):
  1469. if res:
  1470. res += ', '
  1471. res += fdict['vcodec']
  1472. if fdict.get('vbr') is not None:
  1473. res += '@'
  1474. elif fdict.get('vbr') is not None and fdict.get('abr') is not None:
  1475. res += 'video@'
  1476. if fdict.get('vbr') is not None:
  1477. res += '%4dk' % fdict['vbr']
  1478. if fdict.get('fps') is not None:
  1479. res += ', %sfps' % fdict['fps']
  1480. if fdict.get('acodec') is not None:
  1481. if res:
  1482. res += ', '
  1483. if fdict['acodec'] == 'none':
  1484. res += 'video only'
  1485. else:
  1486. res += '%-5s' % fdict['acodec']
  1487. elif fdict.get('abr') is not None:
  1488. if res:
  1489. res += ', '
  1490. res += 'audio'
  1491. if fdict.get('abr') is not None:
  1492. res += '@%3dk' % fdict['abr']
  1493. if fdict.get('asr') is not None:
  1494. res += ' (%5dHz)' % fdict['asr']
  1495. if fdict.get('filesize') is not None:
  1496. if res:
  1497. res += ', '
  1498. res += format_bytes(fdict['filesize'])
  1499. elif fdict.get('filesize_approx') is not None:
  1500. if res:
  1501. res += ', '
  1502. res += '~' + format_bytes(fdict['filesize_approx'])
  1503. return res
  1504. def list_formats(self, info_dict):
  1505. formats = info_dict.get('formats', [info_dict])
  1506. table = [
  1507. [f['format_id'], f['ext'], self.format_resolution(f), self._format_note(f)]
  1508. for f in formats
  1509. if f.get('preference') is None or f['preference'] >= -1000]
  1510. if len(formats) > 1:
  1511. table[-1][-1] += (' ' if table[-1][-1] else '') + '(best)'
  1512. header_line = ['format code', 'extension', 'resolution', 'note']
  1513. self.to_screen(
  1514. '[info] Available formats for %s:\n%s' %
  1515. (info_dict['id'], render_table(header_line, table)))
  1516. def list_thumbnails(self, info_dict):
  1517. thumbnails = info_dict.get('thumbnails')
  1518. if not thumbnails:
  1519. tn_url = info_dict.get('thumbnail')
  1520. if tn_url:
  1521. thumbnails = [{'id': '0', 'url': tn_url}]
  1522. else:
  1523. self.to_screen(
  1524. '[info] No thumbnails present for %s' % info_dict['id'])
  1525. return
  1526. self.to_screen(
  1527. '[info] Thumbnails for %s:' % info_dict['id'])
  1528. self.to_screen(render_table(
  1529. ['ID', 'width', 'height', 'URL'],
  1530. [[t['id'], t.get('width', 'unknown'), t.get('height', 'unknown'), t['url']] for t in thumbnails]))
  1531. def list_subtitles(self, video_id, subtitles, name='subtitles'):
  1532. if not subtitles:
  1533. self.to_screen('%s has no %s' % (video_id, name))
  1534. return
  1535. self.to_screen(
  1536. 'Available %s for %s:' % (name, video_id))
  1537. self.to_screen(render_table(
  1538. ['Language', 'formats'],
  1539. [[lang, ', '.join(f['ext'] for f in reversed(formats))]
  1540. for lang, formats in subtitles.items()]))
  1541. def urlopen(self, req):
  1542. """ Start an HTTP download """
  1543. # According to RFC 3986, URLs can not contain non-ASCII characters, however this is not
  1544. # always respected by websites, some tend to give out URLs with non percent-encoded
  1545. # non-ASCII characters (see telemb.py, ard.py [#3412])
  1546. # urllib chokes on URLs with non-ASCII characters (see http://bugs.python.org/issue3991)
  1547. # To work around aforementioned issue we will replace request's original URL with
  1548. # percent-encoded one
  1549. req_is_string = isinstance(req, compat_basestring)
  1550. url = req if req_is_string else req.get_full_url()
  1551. url_escaped = escape_url(url)
  1552. # Substitute URL if any change after escaping
  1553. if url != url_escaped:
  1554. if req_is_string:
  1555. req = url_escaped
  1556. else:
  1557. req_type = HEADRequest if req.get_method() == 'HEAD' else compat_urllib_request.Request
  1558. req = req_type(
  1559. url_escaped, data=req.data, headers=req.headers,
  1560. origin_req_host=req.origin_req_host, unverifiable=req.unverifiable)
  1561. return self._opener.open(req, timeout=self._socket_timeout)
  1562. def print_debug_header(self):
  1563. if not self.params.get('verbose'):
  1564. return
  1565. if type('') is not compat_str:
  1566. # Python 2.6 on SLES11 SP1 (https://github.com/rg3/youtube-dl/issues/3326)
  1567. self.report_warning(
  1568. 'Your Python is broken! Update to a newer and supported version')
  1569. stdout_encoding = getattr(
  1570. sys.stdout, 'encoding', 'missing (%s)' % type(sys.stdout).__name__)
  1571. encoding_str = (
  1572. '[debug] Encodings: locale %s, fs %s, out %s, pref %s\n' % (
  1573. locale.getpreferredencoding(),
  1574. sys.getfilesystemencoding(),
  1575. stdout_encoding,
  1576. self.get_encoding()))
  1577. write_string(encoding_str, encoding=None)
  1578. self._write_string('[debug] youtube-dl version ' + __version__ + '\n')
  1579. try:
  1580. sp = subprocess.Popen(
  1581. ['git', 'rev-parse', '--short', 'HEAD'],
  1582. stdout=subprocess.PIPE, stderr=subprocess.PIPE,
  1583. cwd=os.path.dirname(os.path.abspath(__file__)))
  1584. out, err = sp.communicate()
  1585. out = out.decode().strip()
  1586. if re.match('[0-9a-f]+', out):
  1587. self._write_string('[debug] Git HEAD: ' + out + '\n')
  1588. except Exception:
  1589. try:
  1590. sys.exc_clear()
  1591. except Exception:
  1592. pass
  1593. self._write_string('[debug] Python version %s - %s\n' % (
  1594. platform.python_version(), platform_name()))
  1595. exe_versions = FFmpegPostProcessor.get_versions(self)
  1596. exe_versions['rtmpdump'] = rtmpdump_version()
  1597. exe_str = ', '.join(
  1598. '%s %s' % (exe, v)
  1599. for exe, v in sorted(exe_versions.items())
  1600. if v
  1601. )
  1602. if not exe_str:
  1603. exe_str = 'none'
  1604. self._write_string('[debug] exe versions: %s\n' % exe_str)
  1605. proxy_map = {}
  1606. for handler in self._opener.handlers:
  1607. if hasattr(handler, 'proxies'):
  1608. proxy_map.update(handler.proxies)
  1609. self._write_string('[debug] Proxy map: ' + compat_str(proxy_map) + '\n')
  1610. if self.params.get('call_home', False):
  1611. ipaddr = self.urlopen('https://yt-dl.org/ip').read().decode('utf-8')
  1612. self._write_string('[debug] Public IP address: %s\n' % ipaddr)
  1613. latest_version = self.urlopen(
  1614. 'https://yt-dl.org/latest/version').read().decode('utf-8')
  1615. if version_tuple(latest_version) > version_tuple(__version__):
  1616. self.report_warning(
  1617. 'You are using an outdated version (newest version: %s)! '
  1618. 'See https://yt-dl.org/update if you need help updating.' %
  1619. latest_version)
  1620. def _setup_opener(self):
  1621. timeout_val = self.params.get('socket_timeout')
  1622. self._socket_timeout = 600 if timeout_val is None else float(timeout_val)
  1623. opts_cookiefile = self.params.get('cookiefile')
  1624. opts_proxy = self.params.get('proxy')
  1625. if opts_cookiefile is None:
  1626. self.cookiejar = compat_cookiejar.CookieJar()
  1627. else:
  1628. self.cookiejar = compat_cookiejar.MozillaCookieJar(
  1629. opts_cookiefile)
  1630. if os.access(opts_cookiefile, os.R_OK):
  1631. self.cookiejar.load()
  1632. cookie_processor = compat_urllib_request.HTTPCookieProcessor(
  1633. self.cookiejar)
  1634. if opts_proxy is not None:
  1635. if opts_proxy == '':
  1636. proxies = {}
  1637. else:
  1638. proxies = {'http': opts_proxy, 'https': opts_proxy}
  1639. else:
  1640. proxies = compat_urllib_request.getproxies()
  1641. # Set HTTPS proxy to HTTP one if given (https://github.com/rg3/youtube-dl/issues/805)
  1642. if 'http' in proxies and 'https' not in proxies:
  1643. proxies['https'] = proxies['http']
  1644. proxy_handler = PerRequestProxyHandler(proxies)
  1645. debuglevel = 1 if self.params.get('debug_printtraffic') else 0
  1646. https_handler = make_HTTPS_handler(self.params, debuglevel=debuglevel)
  1647. ydlh = YoutubeDLHandler(self.params, debuglevel=debuglevel)
  1648. opener = compat_urllib_request.build_opener(
  1649. proxy_handler, https_handler, cookie_processor, ydlh)
  1650. # Delete the default user-agent header, which would otherwise apply in
  1651. # cases where our custom HTTP handler doesn't come into play
  1652. # (See https://github.com/rg3/youtube-dl/issues/1309 for details)
  1653. opener.addheaders = []
  1654. self._opener = opener
  1655. def encode(self, s):
  1656. if isinstance(s, bytes):
  1657. return s # Already encoded
  1658. try:
  1659. return s.encode(self.get_encoding())
  1660. except UnicodeEncodeError as err:
  1661. err.reason = err.reason + '. Check your system encoding configuration or use the --encoding option.'
  1662. raise
  1663. def get_encoding(self):
  1664. encoding = self.params.get('encoding')
  1665. if encoding is None:
  1666. encoding = preferredencoding()
  1667. return encoding
  1668. def _write_thumbnails(self, info_dict, filename):
  1669. if self.params.get('writethumbnail', False):
  1670. thumbnails = info_dict.get('thumbnails')
  1671. if thumbnails:
  1672. thumbnails = [thumbnails[-1]]
  1673. elif self.params.get('write_all_thumbnails', False):
  1674. thumbnails = info_dict.get('thumbnails')
  1675. else:
  1676. return
  1677. if not thumbnails:
  1678. # No thumbnails present, so return immediately
  1679. return
  1680. for t in thumbnails:
  1681. thumb_ext = determine_ext(t['url'], 'jpg')
  1682. suffix = '_%s' % t['id'] if len(thumbnails) > 1 else ''
  1683. thumb_display_id = '%s ' % t['id'] if len(thumbnails) > 1 else ''
  1684. t['filename'] = thumb_filename = os.path.splitext(filename)[0] + suffix + '.' + thumb_ext
  1685. if self.params.get('nooverwrites', False) and os.path.exists(encodeFilename(thumb_filename)):
  1686. self.to_screen('[%s] %s: Thumbnail %sis already present' %
  1687. (info_dict['extractor'], info_dict['id'], thumb_display_id))
  1688. else:
  1689. self.to_screen('[%s] %s: Downloading thumbnail %s...' %
  1690. (info_dict['extractor'], info_dict['id'], thumb_display_id))
  1691. try:
  1692. uf = self.urlopen(t['url'])
  1693. with open(thumb_filename, 'wb') as thumbf:
  1694. shutil.copyfileobj(uf, thumbf)
  1695. self.to_screen('[%s] %s: Writing thumbnail %sto: %s' %
  1696. (info_dict['extractor'], info_dict['id'], thumb_display_id, thumb_filename))
  1697. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  1698. self.report_warning('Unable to download thumbnail "%s": %s' %
  1699. (t['url'], compat_str(err)))