I want to use blender to read a video clip that had been edited and show me the edit points. It's a shot change detector. I made it in the compositor and can make it in geometry nodes. I chose the compositor as I thought I could use the less than math node as a boolean switch to control the render output type. If I can make blender write a still frame then it will overwrite all the frames that are NOT change frames. It will then return to writing animation frames with frame numbers appended. I thought I could interrupt the write process after the compositor reads the frame? As someone else changed the flag here change render type to still
I'm trying to get blender to change it's image save type during render from animation(with frame numbers) to still(no frame numbers). I don't know which frames to render until my compositor tree evaluates a source movie, then it will trigger a state change based on a Less Than result. I looked at my Info panel and discovered that I could find the node as
bpy.data.scenes["Scene"].node_tree.nodes["Math.001"].operation = 'LESS_THAN'
But I don't know how to reveal the Result? If I can get that I should be able to build an IF ELSE to control the render state using
bpy.ops.render.render(write_still=True)
How can I read the math node's output?