-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to create and add a marker to a timeline clip? #19
Comments
UPDATE: Looks like creating a marker is straightforward enough: which in turn requires the creation of a MobRef, But for now, how to properly configure that MobRef and then add it to a timeline clip remains a mystery. |
Have you looked at the dump_marker.py example? The correct way to create any with avb.open() as f:
marker = f.create.Marker() |
Thanks Mark
I did, and it was very helpful in getting a sense of what the attributes and properties of a marker are. It looks like getting marker lists should be simple (not to mention faster than exporting from Avid)
So having created a marker, is there a proper way to fill in the comment, name, start, offset, etc. and attach it to timeline clip? |
Playing with an idea like the one below.
|
It looks like it should be possible to do if not obvious how to an experienced pythoner, based on this bit of code, but I'm relatively new to python.
The text was updated successfully, but these errors were encountered: