EffectStrip(Strip)¶
base classes — bpy_struct, Strip
subclasses —
AddStrip, AdjustmentStrip, AlphaOverStrip, AlphaUnderStrip, ColorMixStrip, ColorStrip, CrossStrip, GammaCrossStrip, GaussianBlurStrip, GlowStrip, MulticamStrip, MultiplyStrip, OverDropStrip, SpeedControlStrip, SubtractStrip, TextStrip, TransformStrip, WipeStrip
- class bpy.types.EffectStrip(Strip)¶
Sequence strip applying an effect on the images created by other strips
- alpha_mode¶
Representation of alpha information in the RGBA pixels
STRAIGHTStraight – RGB channels in transparent pixels are unaffected by the alpha channel.PREMULPremultiplied – RGB channels in transparent pixels are multiplied by the alpha channel.
- Type:
enum in [‘STRAIGHT’, ‘PREMUL’], default ‘STRAIGHT’
- color_multiply¶
- Type:
float in [0, 20], default 1.0
- color_saturation¶
Adjust the intensity of the input’s color
- Type:
float in [0, 20], default 1.0
- multiply_alpha¶
Multiply alpha along with color channels
- Type:
boolean, default False
- proxy¶
- Type:
StripProxy, (readonly)
- strobe¶
Only display every nth frame
- Type:
float in [1, 30], default 0.0
- transform¶
- Type:
StripTransform, (readonly)
- use_deinterlace¶
Remove fields from video movies
- Type:
boolean, default False
- use_flip_x¶
Flip on the X axis
- Type:
boolean, default False
- use_flip_y¶
Flip on the Y axis
- Type:
boolean, default False
- use_float¶
Convert input to float data
- Type:
boolean, default False
- use_proxy¶
Use a preview proxy and/or time-code index for this strip
- Type:
boolean, default False
- use_reverse_frames¶
Reverse frame order
- Type:
boolean, default False
- classmethod bl_rna_get_subclass(id, default=None)¶
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The RNA type or default when not found.
- Return type:
bpy.types.Structsubclass
- classmethod bl_rna_get_subclass_py(id, default=None)¶
- Parameters:
id (str) – The RNA type identifier.
- Returns:
The class or default when not found.
- Return type:
type