SequenceEditor(bpy_struct)

base class — bpy_struct

class bpy.types.SequenceEditor(bpy_struct)

Sequence editing data for a Scene data-block

active_strip

Sequencer’s active strip

Type:

Strip

cache_final_size

Size of final rendered images cache in megabytes (in [-inf, inf], default 0, readonly)

Type:

int

cache_raw_size

Size of raw source images cache in megabytes (in [-inf, inf], default 0, readonly)

Type:

int

channels

(default None, readonly)

Type:

bpy_prop_collection[SequenceTimelineChannel]

meta_stack

Meta strip stack, last is currently edited meta strip (default None, readonly)

Type:

bpy_prop_collection[Strip]

overlay_frame

Number of frames to offset (in [-inf, inf], default 0)

Type:

int

proxy_dir

(default “”, never None, blend relative // prefix supported)

Type:

str

proxy_storage

How to store proxies for this project (default 'PER_STRIP')

  • PER_STRIP Per Strip – Store proxies using per strip settings.

  • PROJECT Project – Store proxies using project directory.

Type:

Literal[‘PER_STRIP’, ‘PROJECT’]

selected_retiming_keys

(default False, readonly)

Type:

bool

show_missing_media

Render missing images/movies with a solid magenta color (default False)

Type:

bool

show_overlay_frame

Partial overlay on top of the sequencer with a frame offset (default False)

Type:

bool

strips

Top-level strips only (default None, readonly)

Type:

StripsTopLevel[Strip]

strips_all

All strips, recursively including those inside metastrips (default None, readonly)

Type:

bpy_prop_collection[Strip]

use_cache_final

Cache final image for each frame (default False)

Type:

bool

use_cache_raw

Cache raw images read from disk, for faster tweaking of strip parameters at the cost of memory usage (default False)

Type:

bool

use_overlay_frame_lock

(default False)

Type:

bool

use_prefetch

Render frames ahead of current frame in the background for faster playback (default False)

Type:

bool

display_stack(meta_sequence)

Display strips stack

Parameters:

meta_sequence (Strip) – Meta Strip, Meta to display its stack

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.Struct

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

Inherited Properties

Inherited Functions

References