mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-06 23:05:12 +01:00
Fix external downloader availability when using --ffmpeg-location (#12318)
This fix is only applicable to the CLI option Authored by: Kenshin9977
This commit is contained in:
parent
c034d65548
commit
9f77e04c76
2 changed files with 1 additions and 3 deletions
|
|
@ -202,7 +202,7 @@ class FFmpegPostProcessor(PostProcessor):
|
|||
|
||||
@property
|
||||
def available(self):
|
||||
return self.basename is not None
|
||||
return bool(self._ffmpeg_location.get()) or self.basename is not None
|
||||
|
||||
@property
|
||||
def executable(self):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue