โ† All skills
Tencent SkillHub ยท Content Creation

ai notes of video

Generate AI-powered notes from videos (document, outline, or graphic-text formats)

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Generate AI-powered notes from videos (document, outline, or graphic-text formats)

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/ai_notes_poll.py, scripts/ai_notes_task_create.py, scripts/ai_notes_task_query.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

AI Video Notes

Generate structured notes from video URLs using Baidu AI. Supports three note formats.

Workflow

Create Task: Submit video URL โ†’ get task ID Poll Status: Query task every 3-5 seconds until completion Get Results: Retrieve generated notes when status = 10002

Status Codes

CodeStatusAction10000In ProgressContinue polling10002CompletedReturn resultsOtherFailedShow error

Note Types

TypeDescription1Document notes2Outline notes3Graphic-text notes

Create Task

Endpoint: POST /v2/tools/ai_note/task_create Parameters: video_url (required): Public video URL Example: python3 scripts/ai_notes_task_create.py 'https://example.com/video.mp4' Response: { "task_id": "uuid-string" }

Query Task

Endpoint: GET /v2/tools/ai_note/query Parameters: task_id (required): Task ID from create endpoint Example: python3 scripts/ai_notes_task_query.py "task-id-here" Response (Completed): { "status": 10002, "notes": [ { "tpl_no": "1", "contents: ["Note content..."] } ] }

Option 1: Manual Polling

Create task โ†’ store task_id Query every 3-5 seconds: python3 scripts/ai_notes_task_query.py <task_id> Show progress updates: Status 10000: Processing... Status 10002: Completed Stop after 30-60 seconds (video length dependent)

Option 2: Auto Polling (Recommended)

Use the polling script for automatic status updates: python3 scripts/ai_notes_poll.py <task_id> [max_attempts] [interval_seconds] Examples: # Default: 20 attempts, 3-second intervals python3 scripts/ai_notes_poll.py "task-id-here" # Custom: 30 attempts, 5-second intervals python3 scripts/ai_notes_poll.py "task-id-here" 30 5 Output: Shows real-time progress: [1/20] Processing... 25% Auto-stops when complete Returns formatted notes with type labels

Error Handling

Invalid URL: "Video URL not accessible" Processing error: "Failed to parse video" Timeout: "Video too long, try again later"

Category context

Writing, remixing, publishing, visual generation, and marketing content production.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Scripts1 Docs
  • SKILL.md Primary doc
  • scripts/ai_notes_poll.py Scripts
  • scripts/ai_notes_task_create.py Scripts
  • scripts/ai_notes_task_query.py Scripts