Token导航 LogoToken导航TokenDH.com
AI 工具敏感数据github未标认证来源可访问clear审计异常

omnicaptions-translate全能字幕翻译

Agent Skill

omnicaptions-translate 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,384

周安装

141

GitHub Stars

21

下载量

1,128
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:omnicaptions-translate(全能字幕翻译)
来源仓库:https://github.com/lattifai/omni-captions-skills
仓库路径:skills/omnicaptions-translate
安装命令:
npx skills add https://github.com/lattifai/omni-captions-skills --skill omnicaptions-translate
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/lattifai/omni-captions-skills --skill omnicaptions-translate

简介

omnicaptions-translate 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态或代码变更进行整理。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限和维护状态。
  • 使用前建议核实是否会触发联网、命令执行或文件读写操作。
  • 可结合原始 README 进一步验证具体用法和功能边界。

SKILL.md

Caption Translation

Default: Claude native translation (no API key needed)

Use Gemini API only when user explicitly requests it.

Default Workflow (Claude)

  1. Read the caption file
  2. Translate using Claude's native ability
  3. Write output with _Claude_{lang} suffix

Gemini API (Optional)

Use CLI when user requests Gemini:

omnicaptions translate input.srt -l zh --bilingual

Output: input_Gemini_zh.srt

When to Use

  • Translate SRT/VTT/ASS to another language
  • Generate bilingual captions (original + translation)
  • Translate YouTube video transcripts
  • Need context-aware translation (not line-by-line)

When NOT to Use

  • Need transcription (use /omnicaptions:transcribe)
  • Just format conversion without translation (use /omnicaptions:convert)

Setup

pip install omni-captions-skills --extra-index-url https://lattifai.github.io/pypi/simple/

API Key

Priority: GEMINI_API_KEY env → .env file → ~/.config/omnicaptions/config.json

If not set, ask user: Please enter your Gemini API key (get from https://aistudio.google.com/apikey):

Then run with -k <key>. Key will be saved to config file automatically.

Context-Aware Translation

LLM-based translation is superior to traditional machine translation because it understands context across multiple lines:

Why Context Matters

ApproachProblemResult
Line-by-lineNo contextRobotic, disconnected translations
Batch + ContextSees surrounding linesNatural, coherent dialogue

How It Works

┌─────────────────────────────────────────┐
│  Batch size: 30 lines                   │
│  Context: 5 lines before/after          │
├─────────────────────────────────────────┤
│  [5 previous lines] → context           │
│  [30 current lines] → translate         │
│  [5 next lines]     → preview           │
└─────────────────────────────────────────┘

Benefits:

  • Speaker continuity - maintains character voice
  • Split sentences - handles dialogue spanning multiple lines
  • Idioms & culture - adapts cultural references naturally
  • Pronoun resolution - correct he/she/they based on context

Advanced Features

Bilingual Output

# Original + Translation (for language learning)
omnicaptions translate input.srt -l zh --bilingual

Output example:

1
00:00:01,000 --> 00:00:03,500
Welcome to the show.
欢迎来到节目。

2
00:00:03,500 --> 00:00:06,000
Thank you for having me.
感谢邀请我。

Custom Glossary (Coming Soon)

For domain-specific or branded content:

# Use glossary for consistent terminology
omnicaptions translate input.srt -l zh --glossary terms.json

Glossary format:

{
  "API": "接口",
  "Token": "令牌",
  "Machine Learning": "机器学习"
}

Benefits:

  • Terminology consistency - "one term, one translation"
  • Brand compliance - use official product names
  • Domain accuracy - medical, legal, technical terms

Best Practices

1. Provide Context for Better Quality

For specialized content, use custom prompts:

from omnicaptions import GeminiCaption

gc = GeminiCaption()
gc._translation_prompt = """
You are translating captions for a medical documentary.
Use formal Chinese medical terminology.
Glossary: {glossary}
"""
gc.translate("input.srt", "output.srt", "zh")

2. Choose the Right Model

ModelBest For
gemini-3-flash-previewFast, everyday content
gemini-3-pro-previewComplex, nuanced content

3. Review Bilingual Output

Bilingual captions let viewers verify translation quality - ideal for:

  • Language learners
  • Quality assurance
  • Accessibility

CLI Usage

# Translate (auto-output to same directory)
omnicaptions translate input.srt -l zh         # → ./input_Gemini_zh.srt

# Specify output file or directory
omnicaptions translate input.srt -o output/ -l zh   # → output/input_Gemini_zh.srt
omnicaptions translate input.srt -o zh.srt -l zh    # → zh.srt

# Bilingual output (original + translation)
omnicaptions translate input.srt -l zh --bilingual

# Specify model
omnicaptions translate input.vtt -l ja -m gemini-3-pro-preview
OptionDescription
-k, --api-keyGemini API key (auto-prompted if missing)
-o, --outputOutput file or directory (default: same dir as input)
-l, --languageTarget language code (required)
--bilingualOutput both original and translation
-m, --modelModel name (default: gemini-3-flash-preview)
-v, --verboseVerbose output

Language Codes

LanguageCode
Chinese (Simplified)zh
Chinese (Traditional)zh-TW
Japaneseja
Koreanko
Englishen
Spanishes
Frenchfr
Germande

Supported Formats

All formats from lattifai-captions: SRT, VTT, ASS, TTML, JSON, Gemini MD, etc.

Common Mistakes

MistakeFix
No API keyUse -k YOUR_KEY or follow the prompt
Wrong language codeUse ISO codes: zh, ja, en, etc.
Lost formattingASS styles preserved; SRT basic only
Inconsistent termsUse glossary for technical content

References

Related Skills

SkillUse When
/omnicaptions:transcribeNeed transcript first
/omnicaptions:LaiCutAlign timing before translation
/omnicaptions:convertConvert format after translation
/omnicaptions:downloadDownload captions to translate

Workflow Examples

Important: Generate bilingual captions AFTER LaiCut alignment.

File naming convention - preserve language tag and processing chain:

video.en.vtt → video.en_LaiCut.json → video.en_LaiCut.srt → video.en_LaiCut_Claude_zh.srt → video.en_LaiCut_Claude_zh_Color.ass
翻译方式后缀示例
Claude (默认)_Claude_zhvideo.en_LaiCut_Claude_zh.srt
Gemini API_Gemini_zhvideo.en_LaiCut_Gemini_zh.srt
# 1. LaiCut 对齐 (保留词级时间)
omnicaptions LaiCut video.mp4 video.en.vtt
# → video.en_LaiCut.json

# 2. 转换为 SRT (翻译用,文件小)
omnicaptions convert video.en_LaiCut.json -o video.en_LaiCut.srt

# 3a. Claude 翻译 (默认)
# → video.en_LaiCut_Claude_zh.srt

# 3b. 或 Gemini 翻译
omnicaptions translate video.en_LaiCut.srt -l zh --bilingual
# → video.en_LaiCut_Gemini_zh.srt

# 4. 转换为带颜色的 ASS
omnicaptions convert video.en_LaiCut_Claude_zh.srt -o video.en_LaiCut_Claude_zh_Color.ass \
  --line1-color "#00FF00" --line2-color "#FFFF00"

Large JSON Files

LaiCut outputs JSON with word-level timing. For translation, convert to SRT first (much smaller):

# JSON (word-level, ~150KB) → SRT (segment-level, ~15KB)
omnicaptions convert video.en_LaiCut.json -o video.en_LaiCut.srt

Why? JSON preserves word timing for karaoke, but translation only needs segment text. SRT is 10-20x smaller.

Claude Translation Rules (Default)

  1. Preserve format exactly - Keep all timing codes, formatting tags, style definitions
  2. Context-aware - Consider surrounding lines for coherent dialogue
  3. Speaker consistency - Maintain character voice and tone
  4. Cultural adaptation - Adapt idioms and references naturally
  5. Large files - Process in batches of 100 lines to maintain quality

Claude vs Gemini

FeatureClaude (Default)Gemini API
API KeyNone neededRequired
InvocationSkill (Read/Write)CLI command
Output suffix_Claude_{lang}_Gemini_{lang}
Best forMost tasksLarge files, automation

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

26.98%
按下载量换算304

OpenCode

24.93%
按下载量换算281

Antigravity

16.56%
按下载量换算187

Gemini CLI

11.53%
按下载量换算130

Codex

7.52%
按下载量换算85

windsurf

3.28%
按下载量换算37

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

未通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills