UNPKG

@imgly/plugin-ai-video-generation-web

Version:

AI video generation plugin for the CE.SDK editor

33 lines (32 loc) 1.12 kB
import { type Provider, type VideoOutput } from '@imgly/plugin-ai-generation-web'; import type CreativeEditorSDK from '@cesdk/cesdk-js'; import { RunwareProviderConfiguration } from './types'; /** * Input interface for Veo 3.1 Fast Text-to-Video */ export type Veo31FastText2VideoInput = { prompt: string; format?: '1280x720' | '720x1280' | '1920x1080' | '1080x1920'; generate_audio?: boolean; }; /** * Veo 3.1 Fast - Google's fast cinematic video generation model * * AIR: google:3@3 * * Features: * - Text-to-video and image-to-video support * - Native audio generation * - Optimized for high-speed generation with cinematic quality * - Ultra-low latency for rapid creative iteration * * Specifications: * - Prompt: 2-3,000 characters * - Resolutions: 1280x720, 720x1280, 1920x1080, 1080x1920 * - Frame rate: 24 FPS * - Duration: 8 seconds (fixed) */ export declare function Veo31FastText2Video(config: RunwareProviderConfiguration): (context: { cesdk: CreativeEditorSDK; }) => Promise<Provider<'video', Veo31FastText2VideoInput, VideoOutput>>; export default Veo31FastText2Video;