1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-07-04 04:52:52 -05:00

Add brotli content-encoding support (#2433)

Authored by: coletdjnz
This commit is contained in:
coletdev
2022-03-09 05:44:05 +13:00
committed by GitHub
parent 9e0e6adb2d
commit 4390d5ec12
7 changed files with 36 additions and 4 deletions

View File

@ -74,7 +74,7 @@ def version_to_list(version):
def dependency_options():
dependencies = [pycryptodome_module(), 'mutagen'] + collect_submodules('websockets')
dependencies = [pycryptodome_module(), 'mutagen', 'brotli'] + collect_submodules('websockets')
excluded_modules = ['test', 'ytdlp_plugins', 'youtube-dl', 'youtube-dlc']
yield from (f'--hidden-import={module}' for module in dependencies)