SequenceEditor(bpy_struct)¶
base class — bpy_struct
- class bpy.types.SequenceEditor(bpy_struct)¶
Sequence editing data for a Scene data-block
- channels¶
- Type:
bpy_prop_collection
ofSequenceTimelineChannel
, (readonly)
- meta_stack¶
Meta strip stack, last is currently edited meta strip
- Type:
bpy_prop_collection
ofSequence
, (readonly)
- overlay_frame¶
Number of frames to offset
- Type:
int in [-inf, inf], default 0
- proxy_dir¶
- Type:
string, default “”, (never None)
- proxy_storage¶
How to store proxies for this project
PER_STRIP
Per Strip – Store proxies using per strip settings.PROJECT
Project – Store proxies using project directory.
- Type:
enum in [‘PER_STRIP’, ‘PROJECT’], default ‘PER_STRIP’
- selected_retiming_keys¶
- Type:
boolean, default False, (readonly)
- sequences¶
Top-level strips only
- Type:
SequencesTopLevel
bpy_prop_collection
ofSequence
, (readonly)
- sequences_all¶
All strips, recursively including those inside metastrips
- Type:
bpy_prop_collection
ofSequence
, (readonly)
- show_missing_media¶
Render missing images/movies with a solid magenta color
- Type:
boolean, default False
- show_overlay_frame¶
Partial overlay on top of the sequencer with a frame offset
- Type:
boolean, default False
- use_cache_composite¶
Cache intermediate composited images, for faster tweaking of stacked strips at the cost of memory usage
- Type:
boolean, default False
- use_cache_final¶
Cache final image for each frame
- Type:
boolean, default False
- use_cache_preprocessed¶
Cache preprocessed images, for faster tweaking of effects at the cost of memory usage
- Type:
boolean, default False
- use_cache_raw¶
Cache raw images read from disk, for faster tweaking of strip parameters at the cost of memory usage
- Type:
boolean, default False
- use_overlay_frame_lock¶
- Type:
boolean, default False
- use_prefetch¶
Render frames ahead of current frame in the background for faster playback
- Type:
boolean, default False
- display_stack(meta_sequence)¶
Display sequences stack
- Parameters:
meta_sequence (
Sequence
) – Meta Sequence, 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
subclass
- 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