@remotion/studio
Version:
APIs for interacting with the Remotion Studio
18 lines (17 loc) • 577 B
TypeScript
type Options = {
track: {
width: number;
height: number;
};
container: string;
durationInSeconds: number | null;
};
export type ExtractFramesTimestampsInSecondsFn = (options: Options) => Promise<number[]> | number[];
export type ExtractFramesProps = {
src: string;
timestampsInSeconds: number[] | ExtractFramesTimestampsInSecondsFn;
onFrame: (frame: VideoFrame) => void;
signal?: AbortSignal;
};
export declare function extractFrames({ src, timestampsInSeconds, onFrame, signal, }: ExtractFramesProps): Promise<void>;
export {};