WIP: Initial version of a single-frame job compiler #104189

Closed
k8ie wants to merge 26 commits from k8ie/flamenco:single-frame into main

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit 99324ca682 - Show all commits

View File

@ -127,6 +127,8 @@ tmp = basepath + 'merge_tmp/'
filenames = [f for f in os.listdir(basepath) if os.path.isfile(basepath + f)] filenames = [f for f in os.listdir(basepath) if os.path.isfile(basepath + f)]
if 'MERGED.exr' in filenames: if 'MERGED.exr' in filenames:
filenames.remove('MERGED.exr') filenames.remove('MERGED.exr')
if 'DENOISED.exr' in filenames:
filenames.remove('DENOISED.exr')
filenames.sort() filenames.sort()
if len(filenames) <= 1: if len(filenames) <= 1:
print('This job only has one file, merging not required.') print('This job only has one file, merging not required.')