Skip to main content
PFuerst
Inspiring
August 17, 2022
Question

Aumation Blocks script idea Render Dialog when somthing is added to the Queue

  • August 17, 2022
  • 1 reply
  • 865 views

I had a new idea for an Automation Blocks script. Is it possible to make a script that sees if a new entry is made in the Render Queue and than presents a dialog with all the common render settings you might want to set like if it is a image sequense, if you want to include proxies or turn the rendered result into a proxies as well as all the formats via a dropdown. Right now my "programming" skills are a bit to limited for this kind of task so maybe someone can point me in the right direction or comes up with a solution.

Best

 

This topic has been closed for replies.

1 reply

Mathias Moehl
Community Expert
Community Expert
August 18, 2022

Scripts and also Automation Blocks tools cannot monitor in the background if something in the render queue (or a comp or whatever) changed. They always need to be executed manually.

If you render very frequently with a particular render setting and output module, you could use the Add to Render Queue block to create a tool which adds the active comp to the render queue with exactly those settings. Then you can have a keyboard shortcut (or kbar button, for example) to render with those settings.

Mathias Möhl - Developer of tools like BeatEdit and Automation Blocks for Premiere Pro and After Effects
PFuerst
PFuerstAuthor
Inspiring
August 25, 2022

Hey Mathias,

I didn't see your answer until now. Thanks for replying.

After watching one of the courses which also covered rendering I assumed something like that. I've now come up with a different idea as it didn't seem to valueable and you could always just change the settings in the render queue.

 

I've now just used your "Queue with Different Settings Based on Comp Name" script and adjusted the settings to use my most used render settings. This will do it for most of the time 😎

Best regards

Mathias Moehl
Community Expert
Community Expert
August 26, 2022

And it works so nice 🥳

 

I have just on additional question. In the add to Ae Render Queue block is there a way to open up a dialog to specify where the render goes? Right now I pointed it to a location I often use, but there are times where I need to change it. I could go into the Render Queue after the entry is created and change it there but maybe there is another way to do it one go. I tried the select folder dialog but it expects a file dialog which I couldn't find.


There are three blocks for choosing file/folder paths:

- Open Folder Dialog: Allows to choose an existing folder

- Open File Dialog: Allows to choose an existing file

- Save File Dialog: Allows to choose an existing file or enter one that does not exist, yet.

 

So for choosing a file for the render queue, you most likely want to use the "Save File Dialog". Or use the "Open Folder Dialog" and append a file name to the path with some block code, if you want to only choose the target folder and generate the file name from the comp name or something else automatically.


Extra tip:

If the file/folder path is just one of several things which the user should input, you can use a Modal Input Dialog and use the input types "choose folder", "open file" and "save file", to create those inputs as part of a bigger dialog.

I created this picture as a summary 🙂

Mathias Möhl - Developer of tools like BeatEdit and Automation Blocks for Premiere Pro and After Effects