Newer
Older
remotion_docker_devcontainer / voicevox-remotion-template / src / data / pizza-kiln / script.ts
import {
  defineVQTimeline,
  say,
  type VQSpeechEvent,
} from "../../lib/VQRemotionLib";
import type {CharacterId, VoicevoxVoice} from "./characters";

export {characters} from "./characters";
export type {CharacterDefinition, CharacterId, VoicevoxVoice} from "./characters";

export type SpeechEvent = VQSpeechEvent<CharacterId, VoicevoxVoice>;

export const timeline = defineVQTimeline([
  say(
    "pizza-kiln-sayo-001",
    "sayo",
    "小夜です。今日は、お手製の耐熱煉瓦ピザ窯を、全体ショットでご紹介します。"
  ),
  say(
    "pizza-kiln-sayo-002",
    "sayo",
    "以上、小夜がお届けしました。ピザ窯の雰囲気、伝わっていたらうれしいです。"
  ),
] satisfies readonly SpeechEvent[]);