Install any skill in seconds. Free to start, no credit card required.
Get Started Free →See, Understand, Act on video and audio. See- ingest from local files, URLs, RTSP/live feeds, or live record desktop; return realtime context and playable stream links. Understand- extract frames, build visual/semantic/temporal indexes, and search moments with timestamps and auto-clips. Act- transcode and normalize (codec, fps, resolution, aspect ratio), perform timeline edits (subtitles, text/image overlays, branding, audio overlays, dubbing, translation), generate media assets (image, audio, v
.claude/skills/loulanyue-videodb/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 78% | 0% |
| case-03 | ✗→✓ | ▲ Improved | 152% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 77% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 246% | 0% |
| case-11 | ✗→✓ | ▲ Improved | 110% | 0% |
Perception + memory + actions for video, live streams, and desktop sessions.
Before running any VideoDB code, change to the project directory and load environment variables:
pythonfrom dotenv import load_dotenv load_dotenv(".env") import videodb conn = videodb.connect()
This reads VIDEO_DB_API_KEY from:
.env file in current directoryIf the key is missing, videodb.connect() raises AuthenticationError automatically.
Do NOT write a script file when a short inline command works.
When writing inline Python (python -c "..."), always use properly formatted code — use semicolons to separate statements and keep it readable. For anything longer than ~3 statements, use a heredoc instead:
bashpython << 'EOF' from dotenv import load_dotenv load_dotenv(".env") import videodb conn = videodb.connect() coll = conn.get_collection() print(f"Videos: {len(coll.get_videos())}") EOF
When the user asks to "setup videodb" or similar:
bashpip install "videodb[capture]" python-dotenv
If videodb[capture] fails on Linux, install without the capture extra:
bashpip install videodb python-dotenv
The user must set VIDEO_DB_API_KEY using either method:
export VIDEO_DB_API_KEY=your-key.env file: Save VIDEO_DB_API_KEY=your-key in the project's .env fileGet a free API key at console.videodb.io (50 free uploads, no credit card).
Do NOT read, write, or handle the API key yourself. Always let the user set it.
python# URL video = coll.upload(url="https://example.com/video.mp4") # YouTube video = coll.upload(url="https://www.youtube.com/watch?v=VIDEO_ID") # Local file video = coll.upload(file_path="/path/to/video.mp4")
python# force=True skips the error if the video is already indexed video.index_spoken_words(force=True) text = video.get_transcript_text() stream_url = video.add_subtitle()
pythonfrom videodb.exceptions import InvalidRequestError video.index_spoken_words(force=True) # search() raises InvalidRequestError when no results are found. # Always wrap in try/except and treat "No results found" as empty. try: results = video.search("product demo") shots = results.get_shots() stream_url = results.compile() except InvalidRequestError as e: if "No results found" in str(e): shots = [] else: raise
pythonimport re from videodb import SearchType, IndexType, SceneExtractionType from videodb.exceptions import InvalidRequestError # index_scenes() has no force parameter — it raises an error if a scene # index already exists. Extract the existing index ID from the error. try: scene_index_id = video.index_scenes( extraction_type=SceneExtractionType.shot_based, prompt="Describe the visual content in this scene.", ) except Exception as e: match = re.search(r"id\s+([a-f0-9]+)", str(e)) if match: scene_index_id = match.group(1) else: raise # Use score_threshold to filter low-relevance noise (recommended: 0.3+) try: results = video.search( query="person writing on a whiteboard", search_type=SearchType.semantic, index_type=IndexType.scene, scene_index_id=scene_index_id, score_threshold=0.3, ) shots = results.get_shots() stream_url = results.compile() except InvalidRequestError as e: if "No results found" in str(e): shots = [] else: raise
Important: Always validate timestamps before building a timeline:
start must be >= 0 (negative values are silently accepted but produce broken output)start must be < endend must be <= video.lengthpythonfrom videodb.timeline import Timeline from videodb.asset import VideoAsset, TextAsset, TextStyle timeline = Timeline(conn) timeline.add_inline(VideoAsset(asset_id=video.id, start=10, end=30)) timeline.add_overlay(0, TextAsset(text="The End", duration=3, style=TextStyle(fontsize=36))) stream_url = timeline.generate_stream()
pythonfrom videodb import TranscodeMode, VideoConfig, AudioConfig # Change resolution, quality, or aspect ratio server-side job_id = conn.transcode( source="https://example.com/video.mp4", callback_url="https://example.com/webhook", mode=TranscodeMode.economy, video_config=VideoConfig(resolution=720, quality=23, aspect_ratio="16:9"), audio_config=AudioConfig(mute=False), )
Warning: reframe() is a slow server-side operation. For long videos it can take several minutes and may time out. Best practices:
start/end when possiblecallback_url for async processingTimeline first, then reframe the shorter resultpythonfrom videodb import ReframeMode # Always prefer reframing a short segment: reframed = video.reframe(start=0, end=60, target="vertical", mode=ReframeMode.smart) # Async reframe for full-length videos (returns None, result via webhook): video.reframe(target="vertical", callback_url="https://example.com/webhook") # Presets: "vertical" (9:16), "square" (1:1), "landscape" (16:9) reframed = video.reframe(start=0, end=60, target="square") # Custom dimensions reframed = video.reframe(start=0, end=60, target={"width": 1280, "height": 720})
pythonimage = coll.generate_image( prompt="a sunset over mountains", aspect_ratio="16:9", )
pythonfrom videodb.exceptions import AuthenticationError, InvalidRequestError try: conn = videodb.connect() except AuthenticationError: print("Check your VIDEO_DB_API_KEY") try: video = coll.upload(url="https://example.com/video.mp4") except InvalidRequestError as e: print(f"Upload failed: {e}")
| Scenario | Error message | Solution | |----------|--------------|----------| | Indexing an already-indexed video | Spoken word index for video already exists | Use video.index_spoken_words(force=True) to skip if already indexed | | Scene index already exists | Scene index with id XXXX already exists | Extract the existing scene_index_id from the error with re.search(r"id\s+([a-f0-9]+)", str(e)) | | Search finds no matches | InvalidRequestError: No results found | Catch the exception and treat as empty results (shots = []) | | Reframe times out | Blocks indefinitely on long videos | Use start/end to limit segment, or pass callback_url for async | | Negative timestamps on Timeline | Silently produces broken stream | Always validate start >= 0 before creating VideoAsset | | generate_video() / create_collection() fails | Operation not allowed or maximum limit | Plan-gated features — inform the user about plan limits |
Use ws_listener.py to capture WebSocket events during recording sessions. Desktop capture supports macOS only.
STATE_DIR="${VIDEODB_EVENTS_DIR:-$HOME/.local/state/videodb}"VIDEODB_EVENTS_DIR="$STATE_DIR" python scripts/ws_listener.py --clear "$STATE_DIR" &cat "$STATE_DIR/videodb_ws_id"$STATE_DIR/videodb_events.jsonlUse --clear whenever you start a fresh capture run so stale transcript and visual events do not leak into the new session.
pythonimport json import os import time from pathlib import Path events_dir = Path(os.environ.get("VIDEODB_EVENTS_DIR", Path.home() / ".local" / "state" / "videodb")) events_file = events_dir / "videodb_events.jsonl" events = [] if events_file.exists(): with events_file.open(encoding="utf-8") as handle: for line in handle: try: events.append(json.loads(line)) except json.JSONDecodeError: continue transcripts = [e["data"]["text"] for e in events if e.get("channel") == "transcript"] cutoff = time.time() - 300 recent_visual = [ e for e in events if e.get("channel") == "visual_index" and e["unix_ts"] > cutoff ]
Reference documentation is in the reference/ directory adjacent to this SKILL.md file. Use the Glob tool to locate it if needed.
Do not use ffmpeg, moviepy, or local encoding tools when VideoDB supports the operation. The following are all handled server-side by VideoDB — trimming, combining clips, overlaying audio or music, adding subtitles, text/image overlays, transcoding, resolution changes, aspect-ratio conversion, resizing for platform requirements, transcription, and media generation. Only fall back to local tools for operations listed under Limitations in reference/editor.md (transitions, speed changes, crop/zoom, colour grading, volume mixing).
| Problem | VideoDB solution | |---------|-----------------| | Platform rejects video aspect ratio or resolution | video.reframe() or conn.transcode() with VideoConfig | | Need to resize video for Twitter/Instagram/TikTok | video.reframe(target="vertical") or target="square" | | Need to change resolution (e.g. 1080p → 720p) | conn.transcode() with VideoConfig(resolution=720) | | Need to overlay audio/music on video | AudioAsset on a Timeline | | Need to add subtitles | video.add_subtitle() or CaptionAsset | | Need to combine/trim clips | VideoAsset on a Timeline | | Need to generate voiceover, music, or SFX | coll.generate_voice(), generate_music(), generate_sound_effect() |
Reference material for this skill is vendored locally under skills/videodb/reference/. Use the local copies above instead of following external repository links at runtime.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→pass | 15,712 | 8,451 | -46% | 1 | 1 | 0% | 3,065 | 5,452 | +78% | 0 | 0 | — |
case-02 | fail→fail | 12,180 | 9,569 | -21% | 1 | 1 | 0% | 2,395 | 5,615 | +134% | 0 | 0 | — |
case-03 | fail→pass | 9,399 | 4,288 | -54% | 1 | 1 | 0% | 1,757 | 4,431 | +152% | 0 | 0 | — |
case-04 | pass→pass | 4,924 | 2,733 | -44% | 1 | 1 | 0% | 869 | 4,154 | +378% | 0 | 0 | — |
case-05 | pass→pass | 5,770 | 2,460 | -57% | 1 | 1 | 0% | 1,008 | 4,097 | +306% | 0 | 0 | — |
case-06 | pass→pass | 4,880 | 2,200 | -55% | 1 | 1 | 0% | 891 | 4,063 | +356% | 0 | 0 | — |
case-07 | pass→pass | 7,720 | 3,911 | -49% | 1 | 1 | 0% | 1,304 | 4,374 | +235% | 0 | 0 | — |
case-08 | fail→pass | 16,358 | 7,152 | -56% | 1 | 1 | 0% | 2,747 | 4,854 | +77% | 0 | 0 | — |
case-09 | fail→pass | 6,499 | 1,745 | -73% | 1 | 1 | 0% | 1,150 | 3,979 | +246% | 0 | 0 | — |
case-10 | pass→pass | 7,146 | 2,108 | -71% | 1 | 1 | 0% | 1,279 | 4,055 | +217% | 0 | 0 | — |
case-11 | fail→pass | 12,833 | 4,773 | -63% | 1 | 1 | 0% | 2,149 | 4,511 | +110% | 0 | 0 | — |
case-12 | fail→pass | 9,336 | 3,617 | -61% | 1 | 1 | 0% | 1,564 | 4,375 | +180% | 0 | 0 | — |
case-13 | pass→pass | 10,183 | 2,247 | -78% | 1 | 1 | 0% | 1,829 | 4,118 | +125% | 0 | 0 | — |
case-14 | fail→pass | 5,752 | 3,086 | -46% | 1 | 1 | 0% | 1,010 | 4,117 | +308% | 0 | 0 | — |
case-15 | pass→pass | 8,914 | 3,222 | -64% | 1 | 1 | 0% | 1,372 | 4,175 | +204% | 0 | 0 | — |
case-16 | fail→pass | 13,985 | 4,356 | -69% | 1 | 1 | 0% | 2,361 | 4,465 | +89% | 0 | 0 | — |
case-17 | fail→pass | 16,802 | 5,270 | -69% | 1 | 1 | 0% | 2,651 | 4,656 | +76% | 0 | 0 | — |
case-18 | fail→pass | 17,136 | 5,687 | -67% | 1 | 1 | 0% | 2,927 | 4,678 | +60% | 0 | 0 | — |
case-19 | fail→pass | 14,762 | 5,944 | -60% | 1 | 1 | 0% | 2,527 | 4,845 | +92% | 0 | 0 | — |
case-20 | pass→pass | 14,378 | 5,389 | -63% | 1 | 1 | 0% | 2,483 | 4,644 | +87% | 0 | 0 | — |
case-21 | pass→pass | 13,587 | 5,715 | -58% | 1 | 1 | 0% | 2,125 | 4,688 | +121% | 0 | 0 | — |
case-22 | fail→pass | 12,938 | 7,115 | -45% | 1 | 1 | 0% | 2,482 | 4,932 | +99% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted. The headline lift of +55 percentage points is the difference between those two pass rates over the 22 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.