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
+3 -3
View File
@@ -257,7 +257,7 @@ class SeedanceVideo(BaseTool):
try:
submit_resp = requests.post(
f"https://queue.fal.run/fal-ai/{model_path}",
f"https://queue.fal.run/{model_path}",
headers=headers,
json=payload,
timeout=30,
@@ -305,7 +305,7 @@ class SeedanceVideo(BaseTool):
success=True,
data={
"provider": "seedance",
"model": f"fal-ai/{model_path}",
"model": model_path,
"prompt": inputs["prompt"],
"operation": operation,
"variant": variant,
@@ -321,5 +321,5 @@ class SeedanceVideo(BaseTool):
artifacts=[str(output_path)],
cost_usd=self.estimate_cost(inputs),
duration_seconds=round(time.time() - start, 2),
model=f"fal-ai/{model_path}",
model=model_path,
)