gemini-caption-transcribe
Transcribe audio/video using Gemini 2.5/3 Pro API with structured output
npx skills add majiayu000/claude-skill-registry --skill gemini-caption-transcribe --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Gemini Transcription Skill Use this skill to transcribe audio or video files using Google's Gemini API. ## Installation ```bash # Using uv (recommended) uv pip install gemini-caption-skills # Or using pip pip install gemini-caption-skills ``` ## Prerequisites ### Get Your API Key 1. Visit: https://aistudio.google.com/apikey 2. Sign in with your Google account 3. Click **"Create API Key"** 4. Copy the key ### Configure API Key (choose one) **Option 1: Save to config (recommended)** ```python from gemini_caption import set_api_key set_api_key("your-api-key-here") ``` Config location: `~/.config/gemini-caption/config.json` **Option 2: Environment variable** ```bash export GEMINI_API_KEY="your-api-key-here" ``` **Option 3: Project .env file** ```bash # In your project root, create .env GEMINI_API_KEY=your-api-key-here ``` ### Verify Setup ```python from gemini_caption import get_api_key print(get_api_key()) # Should print your key ``` ## Usage ### From URL (YouTube, etc.) ```python import asyncio from gemini_caption import GeminiTranscriber transcriber = GeminiTranscriber(verbose=True) transcript = asyncio.run(transcriber.transcribe_url("https://www.youtube.com/watch?v=VIDEO_ID")) pr
- Installation
- Prerequisites
- Get Your API Key
- Configure API Key (choose one)
- Verify Setup
- Usage
- From URL (YouTube, etc.)
- From Local File
- Sync API
- Output Format
- Configuration
- Prompt Customization
- Key Features
Using uv (recommended) uv pip install gemini-caption-skills Or using pip pip install gemini-caption-skills export GEMINI_API_KEY="your-api-key-here" In your project root, create .env
What does the gemini-caption-transcribe skill do?
Transcribe audio/video using Gemini 2.5/3 Pro API with structured output
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill gemini-caption-transcribe --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
