bpy.ops.clip.refine_markers()是Blender中的一个操作,用于在视频剪辑编辑器中细分标记。
该函数没有任何参数。
该函数没有返回值。
import bpy
# 获取当前激活的视频剪辑编辑器
editor = bpy.context.area.spaces.active
if editor and editor.type == 'SEQUENCE_EDITOR':
if editor.mode == 'MARKER':
# 细分所有选择的标记
bpy.ops.clip.refine_markers()
else:
print("当前不是标记模式")
else:
print("当前未处于视频剪辑编辑器")