EffectStrip(Strip)¶
base classes — bpy_struct, Strip
Subclasses
- AddStrip(EffectStrip)
- AdjustmentStrip(EffectStrip)
- AlphaOverStrip(EffectStrip)
- AlphaUnderStrip(EffectStrip)
- ColorMixStrip(EffectStrip)
- ColorStrip(EffectStrip)
- CompositorStrip(EffectStrip)
- CrossStrip(EffectStrip)
- GammaCrossStrip(EffectStrip)
- GaussianBlurStrip(EffectStrip)
- GlowStrip(EffectStrip)
- MulticamStrip(EffectStrip)
- MultiplyStrip(EffectStrip)
- SpeedControlStrip(EffectStrip)
- SubtractStrip(EffectStrip)
- TextStrip(EffectStrip)
- WipeStrip(EffectStrip)
- 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 (default
'STRAIGHT')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:
Literal[‘STRAIGHT’, ‘PREMUL’]
- color_multiply¶
(in [0, 20], default 1.0)
- Type:
float
- color_saturation¶
Adjust the intensity of the input’s color (in [0, 20], default 1.0)
- Type:
float
- multiply_alpha¶
Multiply alpha along with color channels (default False)
- Type:
bool
- proxy¶
(readonly)
- Type:
StripProxy| None
- strobe¶
Only display every nth frame (in [1, 30], default 0.0)
- Type:
float
- transform¶
(readonly)
- Type:
StripTransform| None
- use_deinterlace¶
Remove fields from video movies (default False)
- Type:
bool
- use_flip_x¶
Flip on the X axis (default False)
- Type:
bool
- use_flip_y¶
Flip on the Y axis (default False)
- Type:
bool
- use_float¶
Convert input to float data (default False)
- Type:
bool
- use_proxy¶
Use a preview proxy for this strip (default False)
- Type:
bool
- use_reverse_frames¶
Reverse frame order (default False)
- Type:
bool
- classmethod bl_rna_get_subclass(id, default=None, /)¶
- Parameters:
id (str) – The RNA type identifier.
default (
bpy.types.Struct| None) – The value to return when not found.
- Returns:
The RNA type or default when not found.
- Return type:
- classmethod bl_rna_get_subclass_py(id, default=None, /)¶
- Parameters:
id (str) – The RNA type identifier.
default (type | None) – The value to return when not found.
- Returns:
The class or default when not found.
- Return type:
type