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.

10 lines (9 loc) 327 B
import { Config } from "../../config"; import type { Caption } from "../../types/shorts"; export declare const ErrorWhisper: Error; export declare class Whisper { private config; constructor(config: Config); static init(config: Config): Promise<Whisper>; CreateCaption(audioPath: string): Promise<Caption[]>; }