diff options
author | Kenshin9977 <33557877+Kenshin9977@users.noreply.github.com> | 2025-02-23 09:50:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-23 08:50:43 +0000 |
commit | 9f77e04c76e36e1cbbf49bc9eb385fa6ef804b67 (patch) | |
tree | ea6b0c6ea3c8e01216c80b48724939cd795aff4a /yt_dlp/downloader/external.py | |
parent | c034d655487be668222ef9476a16f374584e49a7 (diff) |
Fix external downloader availability when using `--ffmpeg-location` (#12318)
This fix is only applicable to the CLI option
Authored by: Kenshin9977
Diffstat (limited to 'yt_dlp/downloader/external.py')
-rw-r--r-- | yt_dlp/downloader/external.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/yt_dlp/downloader/external.py b/yt_dlp/downloader/external.py index 7f6b5b45c..ee73ac043 100644 --- a/yt_dlp/downloader/external.py +++ b/yt_dlp/downloader/external.py @@ -457,8 +457,6 @@ class FFmpegFD(ExternalFD): @classmethod def available(cls, path=None): - # TODO: Fix path for ffmpeg - # Fixme: This may be wrong when --ffmpeg-location is used return FFmpegPostProcessor().available def on_process_started(self, proc, stdin): |