mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
parent
cf4f42cb97
commit
592b748582
4 changed files with 8 additions and 17 deletions
|
@ -518,17 +518,6 @@ class YoutubeDL(object):
|
|||
'storyboards': {'mhtml'},
|
||||
}
|
||||
|
||||
params = None
|
||||
_ies = {}
|
||||
_pps = {k: [] for k in POSTPROCESS_WHEN}
|
||||
_printed_messages = set()
|
||||
_first_webpage_request = True
|
||||
_download_retcode = None
|
||||
_num_downloads = None
|
||||
_playlist_level = 0
|
||||
_playlist_urls = set()
|
||||
_screen_file = None
|
||||
|
||||
def __init__(self, params=None, auto_init=True):
|
||||
"""Create a FileDownloader object with the given options.
|
||||
@param auto_init Whether to load the default extractors and print header (if verbose).
|
||||
|
@ -536,6 +525,7 @@ class YoutubeDL(object):
|
|||
"""
|
||||
if params is None:
|
||||
params = {}
|
||||
self.params = params
|
||||
self._ies = {}
|
||||
self._ies_instances = {}
|
||||
self._pps = {k: [] for k in POSTPROCESS_WHEN}
|
||||
|
@ -547,7 +537,8 @@ class YoutubeDL(object):
|
|||
self._download_retcode = 0
|
||||
self._num_downloads = 0
|
||||
self._num_videos = 0
|
||||
self.params = params
|
||||
self._playlist_level = 0
|
||||
self._playlist_urls = set()
|
||||
self.cache = Cache(self)
|
||||
|
||||
windows_enable_vt_mode()
|
||||
|
@ -840,12 +831,12 @@ class YoutubeDL(object):
|
|||
def save_console_title(self):
|
||||
if not self.params.get('consoletitle') or self.params.get('simulate'):
|
||||
return
|
||||
self._send_console_code('\033[22;0t') # Save the title on stack
|
||||
self._send_console_code('\033[22;0t') # Save the title on stack
|
||||
|
||||
def restore_console_title(self):
|
||||
if not self.params.get('consoletitle') or self.params.get('simulate'):
|
||||
return
|
||||
self._send_console_code('\033[23;0t') # Restore the title from stack
|
||||
self._send_console_code('\033[23;0t') # Restore the title from stack
|
||||
|
||||
def __enter__(self):
|
||||
self.save_console_title()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue