|
|
@ -109,6 +109,9 @@ class FfxController():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def generateOutputTokens(self, filePathBase, format = '', ext = ''):
|
|
|
|
def generateOutputTokens(self, filePathBase, format = '', ext = ''):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
self.__logger.debug(f"FfxController.generateOutputTokens(): base={filePathBase} format={format} ext={ext}")
|
|
|
|
|
|
|
|
|
|
|
|
outputFilePath = f"{filePathBase}{'.'+str(ext) if ext else ''}"
|
|
|
|
outputFilePath = f"{filePathBase}{'.'+str(ext) if ext else ''}"
|
|
|
|
if format:
|
|
|
|
if format:
|
|
|
|
return ['-f', format, outputFilePath]
|
|
|
|
return ['-f', format, outputFilePath]
|
|
|
|