mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
Show libraries present in verbose head
This commit is contained in:
parent
8c0ae192a4
commit
2831b4686c
@ -3192,11 +3192,6 @@ def print_debug_header(self):
|
|||||||
if not self.params.get('verbose'):
|
if not self.params.get('verbose'):
|
||||||
return
|
return
|
||||||
|
|
||||||
if type('') is not compat_str:
|
|
||||||
# Python 2.6 on SLES11 SP1 (https://github.com/ytdl-org/youtube-dl/issues/3326)
|
|
||||||
self.report_warning(
|
|
||||||
'Your Python is broken! Update to a newer and supported version')
|
|
||||||
|
|
||||||
stdout_encoding = getattr(
|
stdout_encoding = getattr(
|
||||||
sys.stdout, 'encoding', 'missing (%s)' % type(sys.stdout).__name__)
|
sys.stdout, 'encoding', 'missing (%s)' % type(sys.stdout).__name__)
|
||||||
encoding_str = (
|
encoding_str = (
|
||||||
@ -3252,14 +3247,24 @@ def python_implementation():
|
|||||||
exe_versions['rtmpdump'] = rtmpdump_version()
|
exe_versions['rtmpdump'] = rtmpdump_version()
|
||||||
exe_versions['phantomjs'] = PhantomJSwrapper._version()
|
exe_versions['phantomjs'] = PhantomJSwrapper._version()
|
||||||
exe_str = ', '.join(
|
exe_str = ', '.join(
|
||||||
'%s %s' % (exe, v)
|
f'{exe} {v}' for exe, v in sorted(exe_versions.items()) if v
|
||||||
for exe, v in sorted(exe_versions.items())
|
) or 'none'
|
||||||
if v
|
|
||||||
)
|
|
||||||
if not exe_str:
|
|
||||||
exe_str = 'none'
|
|
||||||
self._write_string('[debug] exe versions: %s\n' % exe_str)
|
self._write_string('[debug] exe versions: %s\n' % exe_str)
|
||||||
|
|
||||||
|
from .downloader.fragment import can_decrypt_frag
|
||||||
|
from .downloader.websocket import has_websockets
|
||||||
|
from .postprocessor.embedthumbnail import has_mutagen
|
||||||
|
from .cookies import SQLITE_AVAILABLE, KEYRING_AVAILABLE
|
||||||
|
|
||||||
|
lib_str = ', '.join(filter(None, (
|
||||||
|
can_decrypt_frag and 'pycryptodome',
|
||||||
|
has_websockets and 'websockets',
|
||||||
|
has_mutagen and 'mutagen',
|
||||||
|
SQLITE_AVAILABLE and 'sqlite',
|
||||||
|
KEYRING_AVAILABLE and 'keyring',
|
||||||
|
))) or 'none'
|
||||||
|
self._write_string('[debug] Optional libraries: %s\n' % lib_str)
|
||||||
|
|
||||||
proxy_map = {}
|
proxy_map = {}
|
||||||
for handler in self._opener.handlers:
|
for handler in self._opener.handlers:
|
||||||
if hasattr(handler, 'proxies'):
|
if hasattr(handler, 'proxies'):
|
||||||
|
Loading…
Reference in New Issue
Block a user