mirror of
https://github.com/blw1138/Zordon.git
synced 2025-12-19 17:58:12 +00:00
Ffmpeg versioning issues (#68)
* FFMPEG version cleanup * Make sure attempts don't go on forever * Use latest version when version not defined. Add latest to UI
This commit is contained in:
@@ -13,7 +13,7 @@ class BaseRenderEngine(object):
|
||||
|
||||
def __init__(self, custom_path=None):
|
||||
self.custom_renderer_path = custom_path
|
||||
if not self.renderer_path():
|
||||
if not self.renderer_path() or not os.path.exists(self.renderer_path()):
|
||||
raise FileNotFoundError(f"Cannot find path to renderer for {self.name()} instance")
|
||||
|
||||
def renderer_path(self):
|
||||
|
||||
Reference in New Issue
Block a user