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.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/api00/revid-pdf-to-videoPDF → summary video
Take a PDF URL and produce a short summary video. Internally this routes
through article-to-video once the PDF text has been extracted by Revid's
scraper.
When to use this skill
- Source is a public PDF URL (whitepaper, paper, ebook, slide export).
- Goal is a 30–90 s summary, not a full reading.
- For HTML articles use
revid-article-to-short. - For local PDFs the agent must first upload to public storage (S3, Supabase Storage, etc.) so Revid can fetch it.
Inputs
| Field | Required | Notes |
|---|---|---|
url | yes | Public PDF URL (must be reachable, no auth) |
aspectRatio | no | Default 9:16 |
targetDuration | no | Default 60 (s); raise to 90 s for dense papers |
Step-by-step
- Confirm the URL ends in
.pdfor returnsContent-Type: application/pdf. - Set
source.scrapingPromptto bias the summary toward what the user cares about ("Focus on the methodology section", "Focus on the executive summary", "Pull the 3 biggest takeaways"). - POST
/renderwith the payload below. - Poll
/status.
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": "{PDF_URL}",
"scrapingPrompt": "Extract the executive summary and the 3 biggest takeaways. Skip references and appendices."
},
"aspectRatio": "9:16",
"voice": { "enabled": true, "stability": 0.65, "speed": 0.95, "language": "en-US" },
"captions": { "enabled": true, "position": "middle", "autoCrop": true },
"music": { "enabled": true, "syncWith": "beats" },
"media": {
"type": "stock-video",
"density": "medium",
"animation": "soft",
"quality": "pro",
"imageModel": "good",
"videoModel": "pro"
},
"options": {
"targetDuration": 60,
"summarizationPreference": "summarize",
"soundEffects": true,
"hasToGenerateCover": true,
"coverTextType": "title"
},
"render": { "resolution": "1080p", "frameRate": 30 }
}
Examples
examples/whitepaper.jsonexamples/run.sh
Failure modes
| Symptom | Fix |
|---|---|
scrape failed | PDF behind auth or login wall. Re-host the PDF on public storage. |
| Summary skips the section the user cares about | Tighten scrapingPrompt (be specific: section names, page ranges). |
| Visuals are abstract / off-topic | PDFs rarely have crawlable hero images. Pre-render a few key figures as images and pass them in media.provided. |
| Voice rushes through technical terms | Lower voice.speed to 0.9. |
See also
revid-article-to-shortfor HTML.revid-script-with-custom-mediafor full visual control.
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-pdf-to-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-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-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.