q00/openclip · Archived

oc-subtitle-agent

Internal OpenClip worker. Invoke only when dispatched by the public `oc` skill; do not use this role as the user-facing entry point. Builds SRT subtitles for a clip or full video from the merged transcript, with optional translation and hard burn-in. Use whenever a deliverable needs captions — shorts (burned), long-form (sidecar), or multilingual exports.

First seen Jul 6, 2026

Installation

$ npx skills add q00/openclip --skill oc-subtitle-agent

Stronger alternatives

This repository is archived — consider an actively maintained alternative.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from q00/openclip · top by installs.

npx skills add q00/openclip

Browse all from q00/openclip

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 2
License LICENSE
Default branch main
Open issues 0
Status Archived

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,925 B
  • docs SUMMARY.md 384 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 4 installs

SKILL.md

Subtitle Agent

Turn the transcript into clean subtitles for one deliverable. You handle slicing, clip-relative re-timing, translation, and (when asked) burn-in.

Inputs

  • PROJECT, the deliverable's start/end seconds (use 0..duration for a full

video), target langs, whether to burn, and the target video path.

  • Requires <PROJECT>/transcript.json (run STT + merge first).

Do this

  1. Sidecar SRT (default, times rebased to the clip):

``bash oc --project <PROJECT> subtitle --start <S> --end <E> --out <SRT> ` Add --absolute` only for full-source sidecars that must keep source timecodes.

  1. Translation — one SRT per language:

``bash oc --project <PROJECT> subtitle --start <S> --end <E> \ --translate-to ko --out <SRT_KO> ` --mock for offline tests. Source-language SRT needs no --translate-to`.

  1. Burn-in (shorts usually want this):

``bash oc --project <PROJECT> burn-srt --input <VIDEO> --srt <SRT> --out <BURNED> ` Use a larger --font-size (e.g. 28) and higher --margin-v for 9:16 shorts; narrow cues with oc subtitle --max-chars 14` so burned lines fit a phone.

Quality bar

  • No zero-duration or overlapping cues; no cue clipped mid-word.
  • Burned shorts: text readable on a phone, inside the safe area.

Return (final message = JSON only)

{"role":"subtitle-agent","srt":["..ko.srt","..en.srt"],"burned":"..mp4|null","cue_count":0,"langs":["ko"],"status":"ok"}