In this tutorial we’ll use Claude Desktop to caption a local video. The agent uploads it to Rendobar, runs an FFmpeg job that burns subtitles into the video, and returns a download URL. End-to-end takes about eight minutes. You will need:Documentation Index
Fetch the complete documentation index at: https://rendobar.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
- A Rendobar API key (see Installation step 1)
- Claude Desktop with
@rendobar/mcpconfigured (see Installation step 2) - A short
.mp4file on your laptop - An
.srtsubtitle file at the same location
.srt handy, drop this into subs.srt next to your video:
Step 1: Confirm the agent sees Rendobar
Open Claude Desktop and ask:What MCP tools do you have for Rendobar?The agent lists
upload_file, submit_job, get_job, list_jobs, cancel_job, get_account. If it doesn’t, the MCP isn’t loaded — re-check your config and restart Claude Desktop.
Step 2: Check the balance
Ask:Check my Rendobar balance.The agent calls
get_account and reports something like *“0.05.
Step 3: Hand it the files
Tell the agent the goal:Burn the captions inThe agent runs three tool calls in sequence:~/Videos/clip.srtinto~/Videos/clip.mp4and give me the result. Use Rendobar.
upload_file({ path: "~/Videos/clip.mp4" })returns adownloadUrlupload_file({ path: "~/Videos/clip.srt" })returns a seconddownloadUrlsubmit_jobwithtype: "raw.ffmpeg", the two URLs asinputs, and an FFmpeg command that uses-vf subtitles
Step 4: Wait
The agent pollsget_job every few seconds. A 30-second clip with subtitles takes about 20 to 40 seconds to render.
Step 5: Download
Whenget_job returns status: "complete", it includes an outputUrl. The agent shows you a clickable link. Open it in your browser and the captioned video downloads.
What just happened
You handed the agent two local files and a goal. It uploaded each to ephemeral storage, submitted a job to Rendobar’s FFmpeg infrastructure, and polled until done. The whole flow used six tool calls and one English sentence from you. The output file lives atcdn.rendobar.com for 24 hours by default, then auto-deletes. The uploaded source files auto-delete in the same window.
Next
- Tools reference — full schemas for every tool
raw.ffmpegjob type — what FFmpeg commands are accepted- Troubleshooting — when something goes wrong