StripsMeta(bpy_struct)
base class — bpy_struct
- class bpy.types.StripsMeta(bpy_struct)
Collection of Strips
- new_clip(name, clip, channel, frame_start)
Add a new movie clip strip
- new_mask(name, mask, channel, frame_start)
Add a new mask strip
- new_scene(name, scene, channel, frame_start)
Add a new scene strip
- new_image(name, filepath, channel, frame_start, *, fit_method='ORIGINAL')
Add a new image strip
- Parameters:
name (string, (never None)) – Name for the new strip
filepath (string, (never None)) – Filepath to image
channel (int in [1, 128]) – Channel, The channel for the new strip
frame_start (int in [-1048574, 1048574]) – The start frame for the new strip
fit_method (enum in Strip Scale Method Items, (optional)) – Image Fit Method
- Returns:
New Strip
- Return type:
- new_movie(name, filepath, channel, frame_start, *, fit_method='ORIGINAL')
Add a new movie strip
- Parameters:
name (string, (never None)) – Name for the new strip
filepath (string, (never None)) – Filepath to movie
channel (int in [1, 128]) – Channel, The channel for the new strip
frame_start (int in [-1048574, 1048574]) – The start frame for the new strip
fit_method (enum in Strip Scale Method Items, (optional)) – Image Fit Method
- Returns:
New Strip
- Return type:
- new_sound(name, filepath, channel, frame_start)
Add a new sound strip
- Parameters:
name (string, (never None)) – Name for the new strip
filepath (string, (never None)) – Filepath to movie
channel (int in [1, 128]) – Channel, The channel for the new strip
frame_start (int in [-1048574, 1048574]) – The start frame for the new strip
- Returns:
New Strip
- Return type:
- new_meta(name, channel, frame_start)
Add a new meta strip
- Parameters:
name (string, (never None)) – Name for the new strip
channel (int in [1, 128]) – Channel, The channel for the new strip
frame_start (int in [-1048574, 1048574]) – The start frame for the new strip
- Returns:
New Strip
- Return type:
- new_effect(name, type, channel, frame_start, *, length=0, input1=None, input2=None)
Add a new effect strip
- Parameters:
name (string, (never None)) – Name for the new strip
type (enum in [
'CROSS','ADD','SUBTRACT','ALPHA_OVER','ALPHA_UNDER','GAMMA_CROSS','MULTIPLY','WIPE','GLOW','COLOR','SPEED','MULTICAM','ADJUSTMENT','GAUSSIAN_BLUR','TEXT','COLORMIX']) –Type, type for the new strip
CROSSCrossfade – Fade out of one video, fading into another.ADDAdd – Add together color channels from two videos.SUBTRACTSubtract – Subtract one strip’s color from another.ALPHA_OVERAlpha Over – Blend alpha on top of another video.ALPHA_UNDERAlpha Under – Blend alpha below another video.GAMMA_CROSSGamma Crossfade – Crossfade with color correction.MULTIPLYMultiply – Multiply color channels from two videos.WIPEWipe – Sweep a transition line across the frame.GLOWGlow – Add blur and brightness to light areas.COLORColor – Add a simple color strip.SPEEDSpeed – Timewarp video strips, modifying playback speed.MULTICAMMulticam Selector – Control active camera angles.ADJUSTMENTAdjustment Layer – Apply nondestructive effects.GAUSSIAN_BLURGaussian Blur – Soften details along axes.TEXTText – Add a simple text strip.COLORMIXColor Mix – Combine two strips using blend modes.
channel (int in [1, 128]) – Channel, The channel for the new strip
frame_start (int in [-inf, inf]) – The start frame for the new strip
length (int in [-inf, inf], (optional)) – Length of the strip in frames, or the length of each strip if multiple are added
input1 (
Strip, (optional)) – First input strip for effectinput2 (
Strip, (optional)) – Second input strip for effect
- Returns:
New Strip
- Return type:
- 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.Structsubclass
- 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