Skip to content
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

Add isDoneAnalyzingForVideoEffects #56

Closed
TrueObsidian opened this issue Sep 20, 2022 · 1 comment
Closed

Add isDoneAnalyzingForVideoEffects #56

TrueObsidian opened this issue Sep 20, 2022 · 1 comment

Comments

@TrueObsidian
Copy link

I was creating and rendering auto reframe sequences when I noticed premiere will render the sequence before it's finished analyzing. This causes the video to render without any reframing. Adding a while loop solves this.

while not pymiere.Sequence.isDoneAnalyzingForVideoEffects(auto_reframe_sequence): print('Analyzing video effects') sleep(1)

Added this to premiere_objects:
def isDoneAnalyzingForVideoEffects(self): return (self._eval_on_this_object("isDoneAnalyzingForVideoEffects()"))

@qmasingarbe
Copy link
Owner

qmasingarbe commented May 2, 2023

Hi @TrueObsidian ,
Thank you for reporting this issue and providing a fix.
It has been applied (7d2d39c) and is now available in the latest pymiere release 1.4.0 via pip.
Again thank you for participating in making pymiere better!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants