init commit
This commit is contained in:
12
remotion/node_modules/@remotion/webcodecs/dist/extract-frames.d.ts
generated
vendored
Normal file
12
remotion/node_modules/@remotion/webcodecs/dist/extract-frames.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
import { type MediaParserLogLevel } from '@remotion/media-parser';
|
||||
import { type ExtractFramesTimestampsInSecondsFn } from './internal-extract-frames';
|
||||
export type ExtractFramesProps = {
|
||||
src: string;
|
||||
timestampsInSeconds: number[] | ExtractFramesTimestampsInSecondsFn;
|
||||
onFrame: (frame: VideoFrame) => void;
|
||||
signal?: AbortSignal;
|
||||
acknowledgeRemotionLicense?: boolean;
|
||||
logLevel?: MediaParserLogLevel;
|
||||
};
|
||||
export type ExtractFrames = (options: ExtractFramesProps) => Promise<void>;
|
||||
export declare const extractFrames: ExtractFrames;
|
||||
Reference in New Issue
Block a user