スキル一覧に戻る
hmps

transcribe-vaam-video-with-gemini

by hmps

1🍴 0📅 2025年12月27日
GitHubで見るManusで実行

SKILL.md


name: Transcribe Vaam Video with Gemini description: Transcribe Vaam videos using Google Gemini AI. Takes a Vaam share URL, downloads the video, and returns a full text transcription. Supports any language without translation. version: 1.0.0 author: Claude Assistant tags: [vaam, transcription, gemini, video]

IMPORTANT - Path Resolution: This skill can be installed in different locations. Before executing any commands, determine the skill directory based on where you loaded this SKILL.md file, and use that path in all commands below. Replace $SKILL_DIR with the actual discovered path.

Transcribe Vaam Video with Gemini

Transcribe Vaam video recordings using Google Gemini AI. Provide a Vaam share URL and get back a complete text transcription.

Setup (First Time Only)

cd $SKILL_DIR && bun install

This installs the required dependencies (Google Generative AI SDK).

Requirements

Environment Variable:

Usage

cd $SKILL_DIR && bun lib/transcribe-with-gemini.ts <vaam-url>

Options

OptionDescription
--help, -hShow help message
--verbose, -vEnable progress logging (only use for debugging)

Examples

# Basic transcription
cd $SKILL_DIR && bun lib/transcribe-with-gemini.ts https://app.vaam.io/share/abc123

# With verbose output (shows progress)
cd $SKILL_DIR && bun lib/transcribe-with-gemini.ts --verbose https://app.vaam.io/share/abc123

Input

  • Vaam Share URL: Must be in format https://app.vaam.io/share/[id]
    • The ID can contain letters, numbers, and hyphens

Output

On Success:

  • Plain text transcription to stdout
  • Exit code: 0

On Error:

  • JSON error object to stdout with structure:
    {
      "success": false,
      "error": {
        "code": "ERROR_CODE",
        "message": "Human-readable message",
        "details": "Technical details",
        "suggestion": "How to fix it"
      }
    }
    
  • Exit code: 1 (validation errors) or 2 (runtime errors)

Error Codes

CodeDescriptionExit Code
MISSING_ARGUMENTNo URL provided1
INVALID_URLURL doesn't match expected format1
MISSING_API_KEYGEMINI_API_KEY not set1
VIDEO_EXTRACTION_FAILEDCouldn't get video from Vaam2
VIDEO_DOWNLOAD_FAILEDCouldn't download video file2
TRANSCRIPTION_FAILEDGemini API error2

How It Works

  1. Parses the Vaam share URL to extract the capture ID
  2. Fetches the video URL from Vaam's API
  3. Downloads the video to a temporary file
  4. Sends the video to Gemini for transcription
  5. Returns the transcription text
  6. Cleans up temporary files

Notes

  • Videos are transcribed in their original language (no automatic translation)
  • Includes spoken content and important visual information shown on screen
  • Timestamps are not included in the transcription
  • Temporary files are automatically cleaned up after processing
  • Gemini supports videos up to 2GB

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です