一键导入
transcribe-clip
Transcribe a video clip using Gemini to get timestamped segments for captions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Transcribe a video clip using Gemini to get timestamped segments for captions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Generate karaoke-style word-level timestamps by aligning script text to audio using Qwen3-ForcedAligner + jieba for Chinese word segmentation. Use when the user says 'align captions', 'karaoke timestamps', 'word timestamps', 'caption alignment', 'sync text to audio'.
Analyze raw video content using Gemini to identify speakers, topics, key moments, and potential clip opportunities
Audio processing utilities - noise reduction, normalization, enhancement
Extract a video segment using FFmpeg with precise start/end times
Find naturally clean, coherent video segments worth keeping (selection over repair)
Text-guided audio source separation using SAM-Audio via mlx-audio
| name | transcribe-clip |
| description | Transcribe a video clip using Gemini to get timestamped segments for captions |
Use this skill to generate a timestamped transcript of a video clip for captions.
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
{
"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..."
}