# Transcribe Clip

> Transcribe a video clip using Gemini to get timestamped segments for captions Use when this capability is needed.

- Skill: `tomevault-io/transcribe-clip` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/transcribe-clip`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/transcribe-clip/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/transcribe-clip

---


# Transcribe Clip Skill

Use this skill to generate a timestamped transcript of a video clip for captions.

## Usage

```bash
python skills/transcribe-clip/transcribe.py <video_path> [output_json]

# Example
python skills/transcribe-clip/transcribe.py clip.mp4
python skills/transcribe-clip/transcribe.py clip.mp4 transcript.json
```

## Output Format

```json
{
  "segments": [
    {"start": 0.0, "end": 3.5, "text": "First sentence of dialogue."},
    {"start": 3.5, "end": 7.2, "text": "Second sentence continues here."}
  ],
  "full_text": "Complete transcript..."
}
```

## Notes

- Uses Gemini 3 Pro for transcription
- Timestamps are in seconds relative to clip start
- Segments are roughly sentence-level for readability

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/nuva-lab) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-13 -->

