1

Is it possible to enable or disable the "use Sequencer" checkbox via the CLI render command? There's no command line argument for that, but is there an easy way to decide at rendertime whether to use it or not? (Blender pre-2.8)

enter image description here

tobkum
  • 984
  • 5
  • 16

1 Answers1

2

You can include a script in the CLI and include the folowing lines:

bpy.context.scene.render.use_sequencer = False
bpy.context.scene.render.render()

Use the -P <filename> switch to load desired python script.

Moog
  • 2,202
  • 13
  • 17