@rendobar/n8n-nodes-rendobar
v0.2.0
Published
Rendobar media processing for n8n: submit, track, and cancel video jobs, and trigger on completion.
Maintainers
Readme
@rendobar/n8n-nodes-rendobar
n8n community node for Rendobar, a media processing API. Submit, track, and cancel video jobs from your workflows, and start workflows when jobs finish.
n8n is a fair-code workflow automation platform.
Installation
In n8n, go to Settings > Community Nodes and install @rendobar/n8n-nodes-rendobar. See the n8n community nodes docs for details.
Credentials
You need a Rendobar API key (starts with rb_). Create one in the dashboard. The connection is validated against your account when you save it.
- API Key — your
rb_key. - Base URL — defaults to
https://api.rendobar.com. Change it only to target another environment.
Nodes
Rendobar (action)
- Create Job — submit a job.
- The Job Type dropdown is loaded live from your account, and the parameter fields are discovered from the API, so new job types appear without updating this node.
- Each submission sends an idempotency key derived from the n8n execution, so a retried step never creates a duplicate job.
- Optional Wait for Completion: poll until the job is done and return its result. It blocks the workflow, so it's best for short jobs. For long jobs use the trigger below. Configure the poll interval and a max-wait timeout.
- Get Job — fetch a job by ID, including its status and result.
- Optional Download Output File: fetch the headline result file (
file.url) into a binary property so the next node can use it directly. Applies only to completed jobs that produced a file.
- Optional Download Output File: fetch the headline result file (
- Cancel Job — cancel a job that is still running.
- Upload File — stream a binary file from a previous node to Rendobar and get back a URL to use as a job input. Files are ephemeral and auto-delete after 24 hours. Pair it with Create Job: upload, then reference the returned
downloadUrlin the next node's inputs.
Job result (the same shape for every job type)
When a job completes, Get Job (and Create Job with Wait for Completion) returns the full job. The node also lifts the unified output onto the item so downstream nodes get clean, predictable fields regardless of job type:
data— the job-type-specific computed result (a probe report, moderation labels, a transcript, and so on).nullfor jobs that only produce files.file— the headline result: a single output file or a stream manifest (.m3u8/.mpd).nullfor data-only jobs and pure file sets. Each file is{ url, path, type, size, meta? }, wheretypeis one ofvideo,image,audio,captions,playlist,data, orother.files— every produced file, the complete list.[]for data-only jobs. Use this for jobs that emit a set or a stream.expiresAt— Unix ms when the file URLs expire, ornullwhen the job produced no files.
The full job (including status, output, cost, and timings) is still available on the same item, so nothing is lost.
Rendobar Trigger
Starts a workflow when a Rendobar event fires. Select the events to listen for (job completed, failed, cancelled, created, started, and balance events). On activation the node registers its webhook URL with Rendobar and removes it on deactivation.
Rendobar must be able to reach the webhook URL over HTTPS. This works on n8n Cloud or a tunnelled / publicly hosted instance. A plain
localhostn8n is not reachable from the API — usen8n start --tunnelto test locally.
Compatibility
Tested against n8n's current community-node API (n8nNodesApiVersion: 1).
