10 lines
467 B
TypeScript
10 lines
467 B
TypeScript
import type { MediaParserVideoTrack } from '@remotion/media-parser';
|
|
import type { ConvertMediaVideoCodec } from './get-available-video-codecs';
|
|
import type { ResizeOperation } from './resizing/mode';
|
|
export declare const canReencodeVideoTrack: ({ videoCodec, track, resizeOperation, rotate, }: {
|
|
videoCodec: ConvertMediaVideoCodec;
|
|
track: MediaParserVideoTrack;
|
|
resizeOperation: ResizeOperation | null;
|
|
rotate: number | null;
|
|
}) => Promise<boolean>;
|