short-video-maker
Version:
Creates short videos for TikTok, Instagram Reels, and YouTube Shorts using the Model Context Protocol (MCP) and a REST API.
8 lines (7 loc) • 357 B
TypeScript
import { OrientationEnum, type Video } from "../../types/shorts";
export declare class PexelsAPI {
private API_KEY;
constructor(API_KEY: string);
private _findVideo;
findVideo(searchTerms: string[], minDurationSeconds: number, excludeIds?: string[], orientation?: OrientationEnum, timeout?: number, retryCounter?: number): Promise<Video>;
}