remotion-captionslisted
Install: claude install-skill unmet23-lab/synk-appsscript
> 🔴 SYNK — **`description` 은 원본과 갈라져 있다**(09-03 · 유호 픽). 원본은 `Transcribing, displaying
> and animating captions` 한 줄이라 **「Remotion」이 없어** 영상 작업 중에 걸리지 않았다.
> 원본을 판올림할 때 이 줄을 덮어쓰지 말고 다시 붙인다. 형제 = `remotion-markup`.
All captions must be processed in JSON. The captions must use the [`Caption`](https://www.remotion.dev/docs/captions/caption.md) type which is the following:
```ts
import type { Caption } from "@remotion/captions";
```
This is the definition:
```ts
type Caption = {
text: string;
startMs: number;
endMs: number;
timestampMs: number | null;
confidence: number | null;
pageBreakAfter?: boolean;
};
```
## Generating captions
To transcribe video and audio files to generate captions, load the [transcribe-captions.md](transcribe-captions.md) file for more instructions.
## Displaying captions
To display captions in your video, load the [display-captions.md](display-captions.md) file for more instructions.
## Importing captions
To import captions from a .srt file, load the [import-srt-captions.md](import-srt-captions.md) file for more instructions.