netrender
jpeg versions of the render results are downloadable from the web interface. Notes: 1) They are generated (and written to disk) on demand on the master in the same Blender instance, so this will increase memory usage (until there's a way to free and image buffer from memory or it's run in a separate process). 2) They are darker then the real results, since multilayer exr contain the result before gamma correction (for the linear workflow) and that's not applied when loading them as an image. 3) They are NOT thumbnails, they are the same size as the results (albeit at 90% quality jpeg compression)
This commit is contained in:
@@ -161,7 +161,7 @@ class MinimumTimeBetweenDispatchPriority(PriorityRule):
|
||||
|
||||
class ExcludeQueuedEmptyJob(ExclusionRule):
|
||||
def __str__(self):
|
||||
return "Exclude non queued and empty jobs"
|
||||
return "Exclude non queued or empty jobs"
|
||||
|
||||
def test(self, job):
|
||||
return job.status != JOB_QUEUED or job.countFrames(status = QUEUED) == 0
|
||||
|
||||
Reference in New Issue
Block a user