aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/downloader
diff options
context:
space:
mode:
authorpukkandan <pukkandan.ytdlp@gmail.com>2021-10-06 06:34:10 +0530
committerpukkandan <pukkandan.ytdlp@gmail.com>2021-10-06 06:45:45 +0530
commit49e7e9c3ce9d5294f024757cbbfedd6c9d0623be (patch)
tree5baa6a28ec6b02e35d4012561a82dd3a56968d96 /yt_dlp/downloader
parent84726743993295f6105ed9ef5412040b8842e4c6 (diff)
downloadhypervideo-pre-49e7e9c3ce9d5294f024757cbbfedd6c9d0623be.tar.lz
hypervideo-pre-49e7e9c3ce9d5294f024757cbbfedd6c9d0623be.tar.xz
hypervideo-pre-49e7e9c3ce9d5294f024757cbbfedd6c9d0623be.zip
[docs,build] Change all pycryptodome references to pycryptodomex
Diffstat (limited to 'yt_dlp/downloader')
-rw-r--r--yt_dlp/downloader/hls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/downloader/hls.py b/yt_dlp/downloader/hls.py
index 751d874d4..3c5a2617d 100644
--- a/yt_dlp/downloader/hls.py
+++ b/yt_dlp/downloader/hls.py
@@ -72,9 +72,9 @@ class HlsFD(FragmentFD):
can_download, message = self.can_download(s, info_dict, self.params.get('allow_unplayable_formats')), None
if can_download and not compat_pycrypto_AES and '#EXT-X-KEY:METHOD=AES-128' in s:
if FFmpegFD.available():
- can_download, message = False, 'The stream has AES-128 encryption and pycryptodome is not available'
+ can_download, message = False, 'The stream has AES-128 encryption and pycryptodomex is not available'
else:
- message = ('The stream has AES-128 encryption and neither ffmpeg nor pycryptodome are available; '
+ message = ('The stream has AES-128 encryption and neither ffmpeg nor pycryptodomex are available; '
'Decryption will be performed natively, but will be extremely slow')
if not can_download:
message = message or 'Unsupported features have been detected'