소스 정보
- 저장소
- cbcruk/vtt-subtitle-translator
- 최근 소스 활동
- 2026년 7월 6일 03:00
- 감지된 SKILL.md 언어
- 영어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/cbcruk/vtt-subtitle-translator --skill translate-vtt명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | translate-vtt |
| description | Translate an English VTT subtitle file to Korean |
| disable-model-invocation | true |
| argument-hint | [subtitles/filename.en.vtt] |
Translate the given English VTT subtitle file to Korean using translate-vtt.py.
Run:
python3 translate-vtt.py extract "$ARGUMENTS"
Note the batch count and total unique texts from the output.
Launch one Task agent (subagent_type: general-purpose) per batch file. All tasks MUST be launched in a single message (parallel execution).
For each batch_N.json (N = 0 to batch_count - 1), use this prompt:
Read batch_N.json in the subtitles/ directory (same directory as the VTT file).
It contains English subtitle lines that need Korean translation.
For each entry in the "entries" array:
1. Keep all existing fields (id, text) exactly as-is
2. Add a "translation" field with the Korean translation
Write the result to trans_N.json in the same subtitles/ directory.
Keep all metadata fields (source_file, batch_index, total_batches) unchanged.
Translation rules:
- Natural conversational Korean (YouTube tutorial tone)
- Keep technical terms in English: API, GitHub, CLI, MCP, JSON, npm, git,
TypeScript, JavaScript, React, Node.js, VS Code, Docker, SDK, etc.
- Keep proper nouns in English (people names, product names, company names)
- Numbers and units stay as-is
- Each translation is a single line (no line breaks)
- Translate EVERY entry without exception
- Output valid JSON with Korean characters (not unicode escapes)
Wait for ALL agents to complete before proceeding.
python3 translate-vtt.py reconstruct "$ARGUMENTS"
Check:
.ko.vtt file existskoGenerate a self-contained, searchable side-by-side EN/KO comparison:
python3 translate-vtt.py compare "$ARGUMENTS"
Output: <name>.ko.compare.html next to the VTT files. Report the path to
the user so they can review the translation quality in a browser.
python3 translate-vtt.py cleanup subtitles
Cleanup only removes intermediate JSON files; the .ko.vtt and
.compare.html deliverables are kept.
trans_N.json is incomplete