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:
@@ -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,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user