revid-script-with-custom-media
Render a video from a script using only the media assets the caller provides (no stock visuals). Use for branded content where every frame must be on-brand — product clips, brand b-roll, hand-shot footage.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/api00/revid-script-with-custom-mediaScript + your own media → branded video
For when the user has the script and the visuals. Revid only handles voice + captions + assembly. No stock content is mixed in.
When to use this skill
- The user has both a script and a set of clips/images they want used.
- Brand fidelity matters more than visual variety.
- For mixed (your media + stock to fill gaps), drop
media.useOnlyProvidedand userevid-script-to-videowithmedia.provided.
Inputs
| Field | Required | Notes |
|---|---|---|
text | yes | The script |
media.provided[] | yes | At least 3 items recommended; URLs must be public |
aspectRatio | no | Default 9:16 |
voiceId | no | Default voice if omitted |
MediaItem shape:
{ "url": "https://…", "type": "image" | "video" | "audio", "title": "optional", "noReencode": false }
Use type: "image" for stills (Revid will optionally pan/zoom them via
media.turnImagesIntoVideos). Use type: "video" for clips. Keep clip
duration roughly comparable to the script length.
Step-by-step
- Validate every
media.provided[].urlreturns 200 and a video/image content-type. - Confirm enough assets for the script: rough rule = 1 asset per 8–10 s of script, minimum 3.
- POST
/renderwithmedia.useOnlyProvided: true. - Poll
/status.
API call template
POST /api/public/v3/render
Host: www.revid.ai
Content-Type: application/json
key: $REVID_API_KEY
{
"workflow": "script-to-video",
"source": {
"text": "{SCRIPT}"
},
"aspectRatio": "9:16",
"voice": { "enabled": true, "voiceId": "aria-en-us", "stability": 0.6, "speed": 1.0 },
"captions": { "enabled": true, "position": "middle", "autoCrop": true },
"music": { "enabled": true, "syncWith": "beats" },
"media": {
"type": "custom",
"useOnlyProvided": true,
"turnImagesIntoVideos": true,
"mergeVideos": false,
"animation": "soft",
"provided": [
{ "url": "https://cdn.example.com/clip-1.mp4", "type": "video" },
{ "url": "https://cdn.example.com/clip-2.mp4", "type": "video" },
{ "url": "https://cdn.example.com/hero.jpg", "type": "image" }
]
},
"options": {
"summarizationPreference": "no-summarization",
"useOnlyProvidedMedia": true,
"soundEffects": false,
"hasToGenerateCover": true
},
"render": { "resolution": "1080p", "frameRate": 30 }
}
Both media.useOnlyProvided and options.useOnlyProvidedMedia should be
true — they belong to slightly different paths in the legacy code and setting
both is the safest way to forbid stock fill.
Examples
examples/branded-script.jsonexamples/run.sh
Failure modes
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-api00-revid-script-with-custom-media": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
revid-article-to-short
Turn any news article or long-form post URL into a 30–60 second 9:16 short with stock visuals, narration, and captions. Use when the user shares a link and wants an edited summary, not a talking-head.
revid-news-to-daily-short
Generate a daily news short on a topic Revid researches itself. Use for a recurring "news of the day in <niche>" channel — the user only supplies the topic; Revid fetches fresh news, writes the script, and produces the video.
revid-api-foundations
Foundation knowledge for every Revid skill — auth, the single render endpoint, the workflow discriminator, polling, webhooks, and the response envelope. Load this once at session start; specific skills build on it.
revid-blog-to-avatar-video
Turn a blog post URL into a talking-head avatar video — the avatar reads a summarized script of the post against a clean background. Use when the user wants a personal/expert delivery vs an edited promo.
revid-pdf-to-video
Turn a PDF (whitepaper, ebook chapter, slide deck export, research paper) into a short summary video. Use when the source is a PDF URL or a PDF the agent can upload to public storage first.