0

I'm trying to run this code headless to avoid the context error however I can't find any information about adding a color strip without using bpy.ops. How can I convert the following code to not use the operator please?

bpy.ops.sequencer.effect_strip_add(
    type='COLOR', 
    frame_start=1, 
    frame_end=int(file) * filesCount, 
    channel=1,
    color=(
        backgroundColor['r'] / 255, 
        backgroundColor['g'] / 255, 
        backgroundColor['b'] / 255
    )
)

I think it has something to do with new_effect however I can't see an option to add rgb values.

Raja
  • 185
  • 7

1 Answers1

0

@batFINGER to the rescue! The answer to my question can be found here: https://blender.stackexchange.com/a/142392/111345 for anyone else that needs it.

Raja
  • 185
  • 7