mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-06-30 11:02:51 -05:00
[ffmpeg] Make available a property
This commit is contained in:
@ -34,7 +34,7 @@ class FFmpegPostProcessor(PostProcessor):
|
||||
self._determine_executables()
|
||||
|
||||
def check_version(self):
|
||||
if not self.available():
|
||||
if not self.available:
|
||||
raise FFmpegPostProcessorError('ffmpeg or avconv not found. Please install one.')
|
||||
|
||||
required_version = '10-0' if self._uses_avconv() else '1.0'
|
||||
@ -108,6 +108,7 @@ class FFmpegPostProcessor(PostProcessor):
|
||||
self.probe_basename = p
|
||||
break
|
||||
|
||||
@property
|
||||
def available(self):
|
||||
return self.basename is not None
|
||||
|
||||
|
Reference in New Issue
Block a user