@imgly/plugin-ai-video-generation-web
Version:
AI video generation plugin for the CE.SDK editor
9 lines (8 loc) • 464 B
TypeScript
export type { BytedanceClient } from './createBytedanceClient';
export type { BytedanceProviderConfiguration } from './createVideoProvider';
export type SeedanceRatio = '16:9' | '4:3' | '1:1' | '3:4' | '9:16' | '21:9' | 'adaptive';
export type SeedanceResolution = '480p' | '720p' | '1080p';
export declare function getSeedanceDimensions(ratio: SeedanceRatio, resolution: SeedanceResolution, imageAspectRatio?: number): {
width: number;
height: number;
};