You can test it by doing in python console:
frame_start = 10
m = C.scene.sequence_editor.new_meta("test", 2, frame_start)
m.frame_start = frame_start
v = m.sequences.new_movie("mov", "path", 3, frame_start)
m.frame_final_duration = v.frame_duration Differential D10661
Feature: Python API create empty meta sequence for easier nested editing creation Authored by Félix (Miadim) on Mar 9 2021, 11:44 AM. Tags None Subscribers None
Details
You can test it by doing in python console: frame_start = 10
m = C.scene.sequence_editor.new_meta("test", 2, frame_start)
m.frame_start = frame_start
v = m.sequences.new_movie("mov", "path", 3, frame_start)
m.frame_final_duration = v.frame_duration
Diff Detail
Event Timeline
Comment Actions I overlooked one more issue - comment style see https://wiki.blender.org/wiki/Style_Guide/C_Cpp#Comments Otherwise it seems to work fine. there seems to bug that prevents resizing meta properly, but I don't think that's caused by this patch, will look into that
| |||||||||||||||||||||||||||