diff options
author | pukkandan <pukkandan@gmail.com> | 2021-01-26 23:27:32 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-26 23:27:32 +0530 |
commit | e4172ac903f76dfcc5584a498f7657cde0bf977c (patch) | |
tree | 7f189c869388dade01da0e7b4f04fc2bdce5be56 /youtube_dlc/downloader/external.py | |
parent | 5bfa48620542d9ee34958d7c96aa45465b058fbd (diff) | |
download | hypervideo-pre-e4172ac903f76dfcc5584a498f7657cde0bf977c.tar.lz hypervideo-pre-e4172ac903f76dfcc5584a498f7657cde0bf977c.tar.xz hypervideo-pre-e4172ac903f76dfcc5584a498f7657cde0bf977c.zip |
Deprecate avconv/avprobe
All current functionality is left untouched. But don't expect any new features to work with avconv
:ci skip all
Diffstat (limited to 'youtube_dlc/downloader/external.py')
-rw-r--r-- | youtube_dlc/downloader/external.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/downloader/external.py b/youtube_dlc/downloader/external.py index f3a0d0ce4..62803a85e 100644 --- a/youtube_dlc/downloader/external.py +++ b/youtube_dlc/downloader/external.py @@ -233,7 +233,7 @@ class FFmpegFD(ExternalFD): url = info_dict['url'] ffpp = FFmpegPostProcessor(downloader=self) if not ffpp.available: - self.report_error('m3u8 download detected but ffmpeg or avconv could not be found. Please install one.') + self.report_error('m3u8 download detected but ffmpeg could not be found. Please install one.') return False ffpp.check_version() |