/ Verzeichnis / Playground / Claude Video Vision
● Community jordanrendric ⚡ Sofort

Claude Video Vision

von jordanrendric · jordanrendric/claude-video-vision

Make Claude actually understand a video — frames + transcript + scene segmentation, fed in a token-efficient layout.

The skill takes a video file or URL, extracts keyframes (scene-aware), aligns transcript segments, and presents the bundle to Claude for QA, summary, or content extraction. Smart-sampling avoids blowing the context window.

Warum nutzen

Hauptfunktionen

Live-Demo

In der Praxis

bereit

Installieren

Wählen Sie Ihren Client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "claude-video-vision": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jordanrendric/claude-video-vision"
      ],
      "_inferred": true
    }
  }
}

Öffne Claude Desktop → Settings → Developer → Edit Config. Nach dem Speichern neu starten.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "claude-video-vision": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jordanrendric/claude-video-vision"
      ],
      "_inferred": true
    }
  }
}

Cursor nutzt das gleiche mcpServers-Schema wie Claude Desktop. Projektkonfiguration schlägt die globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "claude-video-vision": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jordanrendric/claude-video-vision"
      ],
      "_inferred": true
    }
  }
}

Klicken Sie auf das MCP-Servers-Symbol in der Cline-Seitenleiste, dann "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "claude-video-vision": {
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jordanrendric/claude-video-vision"
      ],
      "_inferred": true
    }
  }
}

Gleiche Struktur wie Claude Desktop. Windsurf neu starten zum Übernehmen.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "claude-video-vision",
      "command": "git",
      "args": [
        "clone",
        "https://github.com/jordanrendric/claude-video-vision"
      ]
    }
  ]
}

Continue nutzt ein Array von Serverobjekten statt einer Map.

~/.config/zed/settings.json
{
  "context_servers": {
    "claude-video-vision": {
      "command": {
        "path": "git",
        "args": [
          "clone",
          "https://github.com/jordanrendric/claude-video-vision"
        ]
      }
    }
  }
}

In context_servers hinzufügen. Zed lädt beim Speichern neu.

claude mcp add claude-video-vision -- git clone https://github.com/jordanrendric/claude-video-vision

Einzeiler. Prüfen mit claude mcp list. Entfernen mit claude mcp remove.

Anwendungsfälle

Praxisnahe Nutzung: Claude Video Vision

Answer questions about a 30-min talk

👤 Claude Code users ⏱ ~15 min intermediate

Wann einsetzen: Conference talk just dropped; you want notes without watching it.

Ablauf
  1. Ingest
    Point skill at the URL.✓ Kopiert
    → Frames + transcript ready
  2. Ask
    Ask focused questions; skill scopes to relevant scenes.✓ Kopiert
    → Precise answers with timestamps

Ergebnis: Targeted understanding without re-watching.

Kombinationen

Mit anderen MCPs für 10-fache Wirkung

claude-video-vision + filesystem

Save the structured note output for later reference

Combine claude-video-vision with filesystem: Save the structured note output for later reference✓ Kopiert

Werkzeuge

Was dieses MCP bereitstellt

WerkzeugEingabenWann aufrufenKosten
ingest (see docs) Pull video + transcript 1 call
query (see docs) Scope-aware question answering 1 call

Kosten & Limits

Was der Betrieb kostet

API-Kontingent
Bound by transcription cost
Tokens pro Aufruf
Mid (sampled, not full video)
Kosten in €
Free skill; transcription/model costs
Tipp
Use shorter scenes when QA is targeted; use long-window mode for summary

Sicherheit

Rechte, Secrets, Reichweite

Minimale Scopes: fs-read fs-write
Credential-Speicherung: API keys for transcription provider in env
Datenabfluss: Transcription provider
Niemals gewähren: process private video without consent

Fehlerbehebung

Häufige Fehler und Lösungen

Transcript misaligned

Lower scene-segmentation threshold; transcript may be off due to music

Alternativen

Claude Video Vision vs. andere

AlternativeWann stattdessenKompromiss
Manual notesTalk is shortDoesn't scale to many videos

Mehr

Ressourcen

📖 Offizielle README auf GitHub lesen

🐙 Offene Issues ansehen

🔍 Alle 400+ MCP-Server und Skills durchsuchen