-
Notifications
You must be signed in to change notification settings - Fork 3
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
Integration fails on publishing with recent OpenTimelineIO versions (0.16.0+) #2
Comments
This is a part of the
I believe we might need to use Yet that does not work in
And some info about the timeline object:
That help shows that So much fun. We might just need to use a wrapper function to pick the right method based on version or available methods. :) Like for example: def each_clip(timeline):
if hasattr(timeline, "find_clips"):
# OpenTimelineIO 0.16.0+
return timeline.find_clips()
elif hasattr(timeline, "clip_if"):
# OpenTimelineIO 0.15.0+
return timeline.clip_if()
else:
# OpenTimelineIO - older?
return timeline.each_clip() |
@antirotor what would you like to do here? :) |
This may be more urgent now - we've gotten a report that Resolve's python interpreter just 'crashes' and logs nothing more as soon as it imports
I posted elsewhere the todo:
|
Is there an existing issue for this?
Current Behavior:
As can be seen in this community forum post the Resolve publishing logic fails on Precollect Instances:
Expected Behavior:
Recent
OpenTimelineIO
versions should work fine.But, for now we could also update documentation that it requires OpenTimelineIO
0.15.0
, so along the lines of:Version
1.0.0
What platform you are running on?
Windows
Steps To Reproduce:
Are there any labels you wish to add?
Relevant log output:
Additional context:
No response
The text was updated successfully, but these errors were encountered: