UNPKG

short-video-maker

Version:

Creates short videos for TikTok, Instagram Reels, and YouTube Shorts using the Model Context Protocol (MCP) and a REST API.

13 lines (12 loc) 514 B
import z from "zod"; import { Config } from "../../config"; import { shortVideoSchema } from "../../components/utils"; import { OrientationEnum } from "../../types/shorts"; export declare class Remotion { private bundled; private config; constructor(bundled: string, config: Config); static init(config: Config): Promise<Remotion>; render(data: z.infer<typeof shortVideoSchema>, id: string, orientation: OrientationEnum): Promise<void>; testRender(outputLocation: string): Promise<void>; }