SKILL.md
唯讀
名稱
remotion-captions
描述
在 Remotion 中處理字幕
所有字幕都必須以 JSON 格式處理。字幕必須使用 Caption 類型,定義如下:
import type { Caption } from "@remotion/captions";
這是定義:
type Caption = {
text: string;
startMs: number;
endMs: number;
timestampMs: number | null;
confidence: number | null;
};
產生字幕
若要轉錄影片和音訊檔案以產生字幕,請載入 transcribe-captions.md 檔案以取得更多說明。
顯示字幕
若要在影片中顯示字幕,請載入 display-captions.md 檔案以取得更多說明。
匯入字幕
若要從 .srt 檔案匯入字幕,請載入 import-srt-captions.md 檔案以取得更多說明。






