Page 1 of 1

Render list notifications

PostPosted: Sat Dec 28, 2019 8:12 pm
by stroessel
Would love to get an integration to an app, e-mail or other solution that would be able to notify me about my render queue. Maybe be able to see status of renders but most important get notifications of finished renders to my iPhone/Apple watch.

I often queue alot of clips for rendering and leave to do other things, trying to be efficient with my time ;) Would be nice to get notified when the rendering is done.

Re: Render list notifications

PostPosted: Mon Jan 13, 2020 11:42 pm
by Mel Matsuoka
I would definitely like to see this in Resolve. I’d actually like to see the Render Queue get a “run pre-render script” and “run post-render script” option, that will let you roll your own notification system using external scripts. Although a simple, OS native notification option would be better than nothing.


Sent from my iPhone using Tapatalk Pro

Re: Render list notifications

PostPosted: Thu Jan 23, 2020 5:55 am
by Shrinivas Ramani
Scripting allows you to do this quite trivially. A post with a user made script from Sam Cogheil is linked below. It's meant to render marker extents and report a message when done -
viewtopic.php?t=86467&p=481917#p481446
A few paraphrased bits relevant to your request:
Code: Select all
        # add your render queue logic using project.AddRenderJob()
        project.StartRendering()
        while (project.IsRenderingInProgress()):   # <--
            time.sleep(1)
print("--render done--")