I’ve been struggling to work out how to change the fileformat using the maya deadline python bindings. I have been testing with the mayaSoftware renderer which we wont be using for production however I still want to figure out how to select the fileformat for quick renders. Bellow is a partial listing of the job and plugin settings I’m passing to the deadline submission. I have also tried setting the format in the defaultRendererGlobals where I can visually see it is set to render tiff output.
Thanks ahead of time for any help provided
JobInfo = {
"Name": scene,
"UserName": self.winuser,
"Frames": self.frameRange,
"Plugin": "MayaBatch",
"Group": self.win.groupCombo.currentText(),
"Pool": self.win.poolCombo.currentText(),
"Priority": self.win.prioritySpin.value(),
"MachineLimit": 1,
"OutputDirectory0": str("%s%s%s" % (str(self.outputdrive),"\\",scene)),
"OutputFilename0": str(r"%s%s" % (scene,".tif")),
"Whitelist": str(self.machineLimit),
}
PluginInfo = {
"Animation": enableAnimation,
"UsingRenderLayers": 0,
"RenderHalfFrames": 0,
"Renderer": "mayaSoftware",
"RenderLayer": "",
"StartupScript": "",
"FrameNumberOffset": 0,
"LocalRendering": 1,
"StrictErrorChecking": 1,
"MaxProcessors": 0,
"AntiAliasing":"low",
"Version": "2016",
"Build": "64bit",
"ImageWidth": self.win.widthSpin.value() ,
"ImageHeight": self.win.heightSpin.value(),
"ProjectPath": str(self.userworkspace),
"OutputFilePath": str("%s%s%s" % (str(self.outputdrive),"\\",scene)),
"OutputFilePrefix": str(scene),
"SkipExistingFrames": 0,
"Camera": self.cams[self.selectedCam],
"Camera0": "",
"Camera1": "",
"Camera2": "",
"Camera3": "",
"Camera4": "",
"IgnoreError211":0,
"SceneFile": cmds.file(q=True, sceneName=True)
}