remotion-captions

remotion-captions

热门

在 Remotion 中处理字幕

3980Star
455Fork
更新于 2026/7/16
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 文件获取更多说明。