mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-02-14 20:48:16 +01:00
Fix ffmpeg not found when specifying ffmpeg_location
This commit is contained in:
parent
07d3a44dae
commit
4458983842
1 changed files with 1 additions and 1 deletions
|
@ -207,7 +207,7 @@ class FFmpegPostProcessor(PostProcessor):
|
|||
|
||||
@property
|
||||
def available(self):
|
||||
return self.basename is not None
|
||||
return self._ffmpeg_location.get() or self.basename is not None
|
||||
|
||||
@property
|
||||
def executable(self):
|
||||
|
|
Loading…
Add table
Reference in a new issue