Skip to content

RenderQueue

RenderQueue

RenderQueue(items: list[RenderQueueItem])

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
from aep_parser import parse

app = parse("project.aep")
render_queue = app.project.render_queue
for rq_item in render_queue:
    ...

See: https://ae-scripting.docsforadobe.dev/renderqueue/renderqueue/

Attributes

items

A collection of all items in the render queue.

num_items

num_items: int

Return the number of items in the render queue.

Note

Equivalent to len(render_queue.items)