Agent skill · Backend & API

gemini-caption-transcribe

Transcribe audio/video using Gemini 2.5/3 Pro API with structured output

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 3 KB
Bundled scripts: none
Path: skills/ai-llm/gemini-caption-transcribe/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Installation
  2. Prerequisites
  3. Get Your API Key
  4. Configure API Key (choose one)
  5. Verify Setup
  6. Usage
  7. From URL (YouTube, etc.)
  8. From Local File
  9. Sync API
  10. Output Format
  11. Configuration
  12. Prompt Customization
  13. Key Features
Ships with 1 file
  • metadata.json
Commands it runs
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
More from claude-skill-registry
All skills →
About this skill
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.

Keep going