Render queue
RenderQueue
¶
The RenderQueue object represents the render automation process, the data
and functionality that is available through the Render Queue panel of a
particular After Effects project. Attributes provide access to items in
the render queue and their render status.
Example
See: https://ae-scripting.docsforadobe.dev/renderqueue/renderqueue/
Attributes¶
num_items
¶
num_items: int
The number of items in the render queue. Read-only.
Note
Equivalent to len(render_queue.items)
Functions¶
add
¶
add(comp: CompItem) -> RenderQueueItem
Add a composition to the render queue.
Creates a new RenderQueueItem with default render settings and a single default output module.
Parameters:
Returns:
-
RenderQueueItem–The newly created RenderQueueItem.