feat(remotion): upgrade cinematic TitleCard + add new scene components

- CinematicRenderer.tsx / cinematic/types.ts: TitleCard now supports
  ghosted video background, word-by-word stagger reveal with blur->sharp
  transition, proper newline handling, and growing accent lines. Title
  scenes accept backgroundSrc/backgroundTrimBeforeSeconds/
  backgroundTrimAfterSeconds plus a plate|overlay variant.
- Add CollageBurst, LyricOverlay, ScreenshotScene components.
- Explainer, Root, components/index.ts wiring updates.
- SCENE_TYPES.md reflects the new components.
- seedance-2-0 skill + seedance_video.py: small fixes.
This commit is contained in:
calesthio
2026-04-23 23:30:23 -07:00
parent 578d77e336
commit 386338c92b
11 changed files with 1763 additions and 44 deletions
+4
View File
@@ -22,6 +22,10 @@ export interface CinematicTitleScene extends CinematicBaseScene {
text: string;
accent?: string;
intensity?: number;
backgroundSrc?: string;
backgroundTrimBeforeSeconds?: number;
backgroundTrimAfterSeconds?: number;
variant?: "plate" | "overlay";
}
export type CinematicScene = CinematicVideoScene | CinematicTitleScene;