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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/api00/revid-tweet-to-talking-headTweet / X / LinkedIn post → talking-head video
Take a single post or a thread and produce a 20–45 s talking-head video where an avatar reads the take.
When to use this skill
- Source is a tweet URL, X thread URL, LinkedIn post URL, or pasted thread text.
- Output is a talking-head delivering the post (avatar + voiceover + captions + minimal background motion).
- For an edited summary with stock visuals of an article, use
revid-article-to-shortinstead.
Inputs
| Field | Required | Notes |
|---|---|---|
text or url | yes | Either the pasted thread (preferred — no scraping) or the post URL. |
avatar.url or characterIds[] | yes | The face. |
aspectRatio | no | Default 9:16 |
targetDuration | no | Default 30 (s) |
Step-by-step
- If you have the tweet/thread text, prefer
script-to-video(no scraping risk — many social platforms block bots). - If you only have a URL, use
article-to-videowith a tightscrapingPrompt. - Either way, attach the
avatarblock + a singlecharacterId. - POST
/render. - Poll
/status.
API call template — pasted thread (preferred)
POST /api/public/v3/render
Host: www.revid.ai
Content-Type: application/json
key: $REVID_API_KEY
{
"workflow": "script-to-video",
"source": {
"text": "{TWEET_OR_THREAD_TEXT}"
},
"aspectRatio": "9:16",
"avatar": {
"enabled": true,
"url": "{AVATAR_IMAGE_URL}",
"removeBackground": true
},
"voice": { "enabled": true, "voiceId": "aria-en-us", "stability": 0.65, "speed": 1.05 },
"captions": { "enabled": true, "position": "middle", "autoCrop": true },
"music": { "enabled": false },
"media": {
"type": "moving-image",
"density": "low",
"animation": "soft",
"placeAvatarInContext": true
},
"options": {
"targetDuration": 30,
"summarizationPreference": "no-summarization",
"hasToGenerateCover": true,
"coverTextType": "first-line"
},
"render": { "resolution": "1080p", "frameRate": 30 }
}
summarizationPreference: "no-summarization" — for tweets, the original
phrasing IS the value. Don't paraphrase.
API call template — URL (fallback)
{
"workflow": "article-to-video",
"source": {
"url": "{POST_URL}",
"scrapingPrompt": "Extract only the original post text and the thread author. Ignore replies, reposts, and side panels."
},
"aspectRatio": "9:16",
"avatar": { "enabled": true, "url": "{AVATAR_IMAGE_URL}", "removeBackground": true },
"voice": { "enabled": true, "voiceId": "aria-en-us", "stability": 0.65 },
"captions":{ "enabled": true, "position": "middle" },
"music": { "enabled": false },
"media": { "type": "moving-image", "density": "low", "animation": "soft" },
"options": { "targetDuration": 30, "summarizationPreference": "summarizeIfLong" },
"render": { "resolution": "1080p" }
}
Examples
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-tweet-to-talking-head": {
"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.