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)
Asked
Active
Viewed 134 times
1 Answers
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
-
Can that Python script also reside within the Blender file as a text block, so no external dependency is needed? – tobkum Oct 17 '19 at 11:10
-
See this answer – Moog Oct 17 '19 at 11:14
-
Thanks! Solved my issue – tobkum Oct 17 '19 at 11:26
