@diffusionstudio/core-v4
Version:
2D motion graphics and video rendering engine
14 lines (13 loc) • 356 B
TypeScript
type VideoSettings = {
height: number;
width: number;
fps: number;
bitrate: number;
};
/**
* Function for retrieving the best supported avc profile
* @param settings - Video settings
* @returns Supported avc profile
*/
export declare function getBestSupportedAvcProfile(settings: VideoSettings): Promise<string | undefined>;
export {};