-
Notifications
You must be signed in to change notification settings - Fork 13
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
Moving timeline playhead #27
Comments
I have done it: timeline.settings._obj.GetCurrentTimecode() to get the current playhead position timeline.settings._obj.SetCurrentTimecode('01:00:20:00') to move it to the specified position |
My bad, by using mediapool.append_to_timeline() the new clips get added at the end nonetheless. } |
Hey @MarcoP91! Pydavinci doesn't fully support all of Resolve's API yet, but unfortunately I don't think even Resolve's API supports inserting clips into timeline yet... I haven't got Resolve handy atm, but you can check the scripting README in your copy of Resolve to see what's supported. |
Also @MarcoP91 not sure if you're aware, but PyDavinci's
|
Ok, thank you 👍 I created a workaround with osascript, I'll leave it here: `query = f""" ` |
Apparently AppendToTimeline() has some new parameters in DR 18 that allows for this. See this forum thread for details: https://forum.blackmagicdesign.com/viewtopic.php?f=21&t=113040 |
cool! |
Fixed in by #28 Closed |
First of all, thank you very much for this repo, I am enjoying it a lot.
I wanted to ask, is there a way to move the playhead? If I add to the timeline a list of MediaPoolItems, they get added one after another; I would like to add a video and an audio file "at the same time". Is that possible? If not, is there a way to set the time location of a MediaPoolItem?
The text was updated successfully, but these errors were encountered: