bpy.context.active_sequence_strip
在当前序列编辑器中激活的序列带。
描述
当前活动区域的顺序带,包含在bpy.context.sequences
列表中。
示例
访问活动的序列带
import bpy
active_strip = bpy.context.active_sequence_strip
print("Sequence strip name:", active_strip.name)
print("Type of sequence strip:", active_strip.type)
修改活动的序列带的属性
import bpy
active_strip = bpy.context.active_sequence_strip
active_strip.frame_start = 100
active_strip.frame_end = 200
属性
bpy.context.active_sequence_strip.type
bpy.types.Sequence.type
序列带的类型。
bpy.context.active_sequence_strip.name
string
序列带的名称。
bpy.context.active_sequence_strip.frame_final_start
float
序列带在场景中的开始帧数。
bpy.context.active_sequence_strip.frame_final_end
float
序列带在场景中的结束帧数。
bpy.context.active_sequence_strip.frame_start
float
序列带在本地空间中的开始帧数。
bpy.context.active_sequence_strip.frame_end
float
序列带在本地空间中的结束帧数。
bpy.context.active_sequence_strip.frame_offset_start
int
序列带的开始帧相对于剪辑区域的偏移量。
bpy.context.active_sequence_strip.frame_offset_end
int
序列带的结束帧相对于剪辑区域的偏移量。
bpy.context.active_sequence_strip.frame_final_duration
float
序列带在场景中的持续时间。
bpy.context.active_sequence_strip.frame_duration
float
序列带在本地空间中的持续时间。
bpy.context.active_sequence_strip.blend_alpha
float
序列带的混合透明度。
bpy.context.active_sequence_strip.blend_type
string
序列带的混合类型。
bpy.context.active_sequence_strip.channel
int
序列带的声道。
bpy.context.active_sequence_strip.mute
bool
序列带是否禁音。
bpy.context.active_sequence_strip.use_translation
bool
序列带是否使用平移。
bpy.context.active_sequence_strip.translate
float[2]
序列带的平移值。
bpy.context.active_sequence_strip.use_crop
bool
序列带是否使用裁剪。
bpy.context.active_sequence_strip.crop
float[4]
序列带的裁剪值。
bpy.context.active_sequence_strip.use_proxy
bool
序列带是否使用代理。
bpy.context.active_sequence_strip.proxy
bpy.types.Proxy
序列带的代理设置。
bpy.context.active_sequence_strip.use_flip_x
bool
序列带是否水平翻转。
bpy.context.active_sequence_strip.use_flip_y
bool
序列带是否垂直翻转。
bpy.context.active_sequence_strip.use_reverse_frames
bool
序列带是否播放反向帧。
bpy.context.active_sequence_strip.use_proxy_custom_directory
bool
序列带是否使用自定义代理目录。
bpy.context.active_sequence_strip.proxy_custom_directory
string
序列带的自定义代理目录。
bpy.context.active_sequence_strip.color_saturation
float
序列带的颜色饱和度。
bpy.context.active_sequence_strip.color_multiply
float
序列带的颜色倍增。
bpy.context.active_sequence_strip.color_hue
float
序列带的颜色色调。
bpy.context.active_sequence_strip.color_mix
float
序列带的颜色混合。
bpy.context.active_sequence_strip.color_gamma
float
序列带的颜色Gamma值。
bpy.context.active_sequence_strip.color_exposure
float
序列带的颜色曝光值。
bpy.context.active_sequence_strip.color_contrast
float
序列带的颜色对比度。
bpy.context.active_sequence_strip.strobe
string
序列带的闪烁方式。
bpy.context.active_sequence_strip.use_strobe_reverse
bool
序列带是否使用反转闪烁。
bpy.context.active_sequence_strip.strobe_duration
float
序列带的闪烁持续时间。
bpy.context.active_sequence_strip.strobe_intensity
float
序列带的闪烁强度。
bpy.context.active_sequence_strip.blend_opacity
float
序列带的混合不透明度。
bpy.context.active_sequence_strip.blend_hardness
float
序列带的混合硬度。
bpy.context.active_sequence_strip.blend_speed
float
序列带的混合速度。
bpy.context.active_sequence_strip.blend_min
float
序列带的混合最小值。
bpy.context.active_sequence_strip.blend_max
float
序列带的混合最大值。
bpy.context.active_sequence_strip.cross_effect
string
序列带的交叉效果类型。
bpy.context.active_sequence_strip.use_multiply_speed
bool
序列带是否使用速度倍增。
bpy.context.active_sequence_strip.multiply_speed
float
序列带的速度倍增。
bpy.context.active_sequence_strip.rotation_mode
string
序列带的旋转模式。
bpy.context.active_sequence_strip.use_custom_ztransform
bool
序列带是否使用自定义z变换。
bpy.context.active_sequence_strip.transform_dimension
int
序列带的变换维度。
bpy.context.active_sequence_strip.transform
float[6]
序列带的变换值。
bpy.context.active_sequence_strip.is_transition
bool
序列带是否为过渡效果。
bpy.context.active_sequence_strip.transition_type
string
过渡效果类型。
bpy.context.active_sequence_strip.transition_blend_type
string
过渡效果混合类型。
bpy.context.active_sequence_strip.transition_duration
float
过渡效果持续时间。
bpy.context.active_sequence_strip.transition_strip
bpy.types.Sequence
序列带的过渡效果带。
bpy.context.active_sequence_strip.transform_offset_start
float[2]
序列带变换的偏移开始位置。
bpy.context.active_sequence_strip.transform_offset_end
float[2]
序列带变换的偏移结束位置。
bpy.context.active_sequence_strip.use_proxy_custom_settings
bool
序列带是否使用自定义代理设置。
bpy.context.active_sequence_strip.proxy_custom_settings
bpy.types.ProxyCustomSettings
序列带的自定义代理设置。