How do you set Quicktime options. (like ProRes, h264, data rate, etc.)
I've tried using this older code with EXRs. But it doesn't seem to work for EXRs anymore.
import c4d
rd = doc.GetActiveRenderData()
container = rd.GetData()
# OpenEXR
container[c4d.RDATA_FORMAT] = c4d.FILTER_EXR
saveOptions = container.GetContainerInstance(c4d.RDATA_SAVEOPTIONS)
# OpenEXR options
bc = c4d.BaseContainer()
bc[0] = 3 # ZIP
bc[1] = True # clamp to half float
# save OpenEXR options
saveOptions.SetContainer(0,bc)
# save render data
rd.SetData(container)
c4d.EventAdd()
The above doesn't set the zip or half float.
I've also looked into using the MovieSaver class.
http://www.plugincafe.com/forum/forum_posts.asp?TID=10877
But still couldn't get where I needed to go. The code in that post also didn't seem to work.
How do I set the Quicktime options with Python?