mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-04-04 14:10:13 -05:00
[compat] Support zstd Content-Encoding
* see RFC 8878 7.2
This commit is contained in:
parent
cecaa18b80
commit
8738407d77
@ -3561,6 +3561,13 @@ try:
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
compat_ncompress = None
|
compat_ncompress = None
|
||||||
|
|
||||||
|
# compat_zstandard
|
||||||
|
# PyPi zstandard package implements 'zstd' Content-Encoding (RFC 8878 7.2)
|
||||||
|
try:
|
||||||
|
import zstandard as compat_zstandard
|
||||||
|
except ImportError:
|
||||||
|
compat_zstandard = None
|
||||||
|
|
||||||
|
|
||||||
legacy = [
|
legacy = [
|
||||||
'compat_HTMLParseError',
|
'compat_HTMLParseError',
|
||||||
@ -3658,4 +3665,5 @@ __all__ = [
|
|||||||
'compat_xml_etree_register_namespace',
|
'compat_xml_etree_register_namespace',
|
||||||
'compat_xpath',
|
'compat_xpath',
|
||||||
'compat_zip',
|
'compat_zip',
|
||||||
|
'compat_zstandard',
|
||||||
]
|
]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user