원클릭으로
videocut
口播视频一站式剪辑 Skill。覆盖转录、口误识别、字幕生成、高清导出的完整工作流。触发词:剪口播、处理视频、帮我剪辑、生成字幕、导出高清。从视频到成片,一步到位。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
口播视频一站式剪辑 Skill。覆盖转录、口误识别、字幕生成、高清导出的完整工作流。触发词:剪口播、处理视频、帮我剪辑、生成字幕、导出高清。从视频到成片,一步到位。
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Ask which skill or flow fits your situation. A router over the skills in this repo.
Review the changes since a fixed point (commit, branch, tag, or merge-base) along two axes — Standards (does the code follow this repo's documented coding standards?) and Spec (does the code match what the originating issue/PRD asked for?). Runs both reviews in parallel sub-agents and reports them side by side. Use when the user wants to review a branch, a PR, work-in-progress changes, or asks to "review since X".
Shared vocabulary for designing deep modules. Use when the user wants to design or improve a module's interface, find deepening opportunities, decide where a seam goes, make code more testable or AI-navigable, or when another skill needs the deep-module vocabulary.
Disciplined diagnosis loop for hard bugs and performance regressions. Reproduce → minimise → hypothesise → instrument → fix → regression-test. Use when user says 'diagnose this' / 'debug this', reports a bug, says something is broken/throwing/failing, or describes a performance regression.
Diagnosis loop for hard bugs and performance regressions. Use when the user says "diagnose"/"debug this", or reports something broken/throwing/failing/slow.
Build and sharpen a project's domain model. Use when the user wants to pin down domain terminology or a ubiquitous language, record an architectural decision, or when another skill needs to maintain the domain model.
| name | videocut |
| description | 口播视频一站式剪辑 Skill。覆盖转录、口误识别、字幕生成、高清导出的完整工作流。触发词:剪口播、处理视频、帮我剪辑、生成字幕、导出高清。从视频到成片,一步到位。 |
| tags | ["Video","Media","Utility"] |
| aliases | ["剪口播","处理视频","生成字幕","视频剪辑"] |
火山引擎转录 + AI 口误识别 + 字幕生成 + 高清导出
用户: 帮我剪这个口播视频
用户: 处理一下这个视频
用户: 生成字幕
用户: 导出高清
| 子目录 | 功能 | 触发词 |
|---|---|---|
skills/剪口播/ | 转录 + 口误识别 + 审核 | 剪口播、处理视频 |
skills/字幕/ | 字幕校对 + 烧录 | 字幕、加字幕 |
skills/高清化/ | 2-pass 高清导出 | 高清化、导出高清 |
skills/自进化/ | 记录反馈、持续改进 | 记录反馈、更新规则 |
Step 1 剪口播 → skills/剪口播/(转录 + 口误识别 + 审核)
Step 2 字幕 → skills/字幕/(校对 + 烧录)
Step 3 高清导出 → skills/高清化/(2-pass + 锐化)
Step 4 自进化 → skills/自进化/(记录反馈,可选)
brew install node ffmpeg
在项目根目录创建 .env:
VOLCENGINE_API_KEY=your_api_key_here
output/
└── YYYY-MM-DD_视频名/
├── 剪口播/
│ ├── 1_转录/
│ │ ├── audio.mp3
│ │ ├── volcengine_result.json
│ │ └── subtitles_words.json
│ ├── 2_分析/
│ │ ├── readable.txt
│ │ ├── sentences.txt
│ │ ├── auto_selected.json
│ │ └── 口误分析.md
│ └── 3_审核/
│ ├── review.html
│ └── video.mp4 → 源视频(符号链接)
├── 字幕/
│ ├── 1_转录/
│ │ ├── audio.mp3
│ │ └── volcengine_result.json
│ ├── subtitles_with_time.json
│ └── 3_输出/
│ ├── video.srt
│ └── video_字幕.mp4
└── 高清化/
└── video_hd.mp4
控制台:https://console.volcengine.com/speech/new/experience/asr?projectName=default
在工作区根目录创建 .env:
VOLCENGINE_API_KEY=your_api_key_here
详细配置见 references/dependencies.md
所有脚本路径均相对于本 SKILL.md 所在目录:
# 转录(剪口播)
bash skills/剪口播/scripts/volcengine_transcribe.sh "audio_url"
# 剪辑视频
bash skills/剪口播/scripts/cut_video.sh input.mp4 delete_list.json output.mp4
# 高清导出
bash skills/高清化/scripts/hd_export.sh input.mp4 [output.mp4] [bitrate_multiplier]
# 字幕烧录
ffmpeg -i "video.mp4" -vf "subtitles='video.srt':force_style=..." -c:a copy output.mp4
详细步骤说明见 references/workflow.md