mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-25 10:40:51 +00:00
vvc logic fix
This commit is contained in:
parent
634e8d5ebb
commit
e7b8f45bd2
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ class Vvc(Encoder):
|
|||
|
||||
def is_valid(self, args: Args) -> Tuple[bool, Optional[str]]:
|
||||
# vvc requires a special concat executable
|
||||
if find_executable('vvc_concat') is not None:
|
||||
if not find_executable('vvc_concat'):
|
||||
return False, 'vvc concatenation executable "vvc_concat" not found'
|
||||
|
||||
# make sure there's a vvc config file
|
||||
|
|
Loading…
Reference in a new issue