[ffmpeg] Make available a property
This commit is contained in:
parent
85729c51af
commit
f740fae2a4
2 changed files with 3 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue