8 lines
295 B
TypeScript
8 lines
295 B
TypeScript
import type { ConvertMediaVideoCodec } from './get-available-video-codecs';
|
|
export declare const getVideoEncoderConfig: ({ codec, height, width, fps, }: {
|
|
width: number;
|
|
height: number;
|
|
codec: ConvertMediaVideoCodec;
|
|
fps: number | null;
|
|
}) => Promise<VideoEncoderConfig | null>;
|