SpeedControlStrip(EffectStrip)

base classes — bpy_struct, Strip, EffectStrip

class bpy.types.SpeedControlStrip(EffectStrip)

Sequence strip to control the speed of other strips

input_1

First input for the effect strip (never None)

Type:

Strip

input_count

(in [0, inf], default 0, readonly)

Type:

int

speed_control

Speed control method (default 'STRETCH')

  • STRETCH Stretch – Adjust input playback speed, so its duration fits strip length.

  • MULTIPLY Multiply – Multiply with the speed factor.

  • FRAME_NUMBER Frame Number – Frame number of the input strip.

  • LENGTH Length – 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:

bpy.types.Struct

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

Inherited Properties

Inherited Functions