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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/api00/revid-blog-to-avatar-videoBlog post → talking-head avatar video
Take any blog/article URL and produce a vertical (or square) talking-head video with a chosen avatar reading a summarized version of the post.
When to use this skill
- Source is a blog post / opinion piece / explainer with substantial body text.
- Output should feel like a person delivering the take, not an edited promo with stock b-roll.
- An avatar (image URL or
characterId) is available, or the user accepts the default avatar. - For an edited short with stock visuals, use
revid-article-to-shortinstead.
Inputs
| Field | Required | Notes |
|---|---|---|
url | yes | Blog post URL |
avatar.url or characterIds[] | yes | The face. Either an image URL or a saved consistent character ID (see character mgmt). |
aspectRatio | no | Default 9:16. Use 1:1 for LinkedIn. |
voiceId | no | Match it to the avatar's tone if known. |
targetDuration | no | Default 60 (s) — talking heads can run longer. |
Step-by-step
- Validate the URL.
- If the user gave an avatar image URL, set
avatar.url. If they gave a saved character ID, setcharacterIds: [id](and leaveavataromitted). - POST the payload below.
- Poll
/status(canonical loop in the Polling section below). - Return
videoUrl.
API call template
POST /api/public/v3/render
Host: www.revid.ai
Content-Type: application/json
key: $REVID_API_KEY
{
"workflow": "article-to-video",
"source": {
"url": "{BLOG_URL}",
"scrapingPrompt": "Extract the article body. Skip header, navigation, related posts, and footer."
},
"aspectRatio": "9:16",
"avatar": {
"enabled": true,
"url": "{AVATAR_IMAGE_URL}",
"removeBackground": true,
"imageModel": "good"
},
"voice": {
"enabled": true,
"voiceId": "aria-en-us",
"stability": 0.65,
"speed": 1.0,
"language": "en-US",
"enhanceAudio": true
},
"captions": { "enabled": true, "position": "bottom", "autoCrop": true },
"music": { "enabled": false },
"media": {
"type": "moving-image",
"density": "low",
"animation": "soft",
"placeAvatarInContext": true
},
"options": {
"targetDuration": 60,
"summarizationPreference": "summarize",
"hasToGenerateCover": true
},
"render": { "resolution": "1080p", "frameRate": 30 }
}
Notes:
placeAvatarInContext: truecomposites the avatar over a relevant background (vs a plain green-screen feel).media.density: "low"keeps cuts minimal so the talking head can carry the video.music.enabled: falseis the default — voice-driven content reads better without competing audio.
Consistent characters
If the user wants the same face across many posts, create a character once and reuse the ID:
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-blog-to-avatar-video": {
"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-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.
revid-tweet-to-talking-head
Turn an X/Twitter/LinkedIn post (URL or pasted thread text) into a talking-head video that delivers the take. Use when a creator wants to repurpose a viral post as a short-form video.