SpeedControlStrip(EffectStrip)
base classes — bpy_struct, Strip, EffectStrip
- class bpy.types.SpeedControlStrip(EffectStrip)
Sequence strip to control the speed of other strips
- input_count
(in [0, inf], default 0, readonly)
- Type:
int
- speed_control
Speed control method (default
'STRETCH')STRETCHStretch – Adjust input playback speed, so its duration fits strip length.MULTIPLYMultiply – Multiply with the speed factor.FRAME_NUMBERFrame Number – Frame number of the input strip.LENGTHLength – Percentage of the input strip length.
- Type:
Literal[‘STRETCH’, ‘MULTIPLY’, ‘FRAME_NUMBER’, ‘LENGTH’]
- speed_factor
Multiply the current speed of the strip with this number or remap current frame to this frame (in [-inf, inf], default 0.0)
- Type:
float
- speed_frame_number
Frame number of input strip (in [-inf, inf], default 0.0)
- Type:
float
- speed_length
Percentage of input strip length (in [-inf, inf], default 0.0)
- Type:
float
- use_frame_interpolate
Do crossfade blending between current and next frame (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