@bigfootds/nodejs-trickplay
Version:
Generate trickplay images for a given video file, for usage in NodeJS environments.
14 lines • 570 B
TypeScript
export type TrickplayGeneratorOptions = {
trickplayOutputDir?: string;
secondsBetweenFrames?: number;
numberOfFramesToGrab?: number;
frameTimestamps?: string[];
trickplayImageWidth?: number;
trickplaySheetRows?: number;
trickplaySheetColumns?: number;
skipIndividualFrameGeneration?: boolean;
individualFrameFileFormat?: string;
tilesheetFileFormat?: string;
};
export declare function generateTrickplay(targetVideoPath: string, options?: TrickplayGeneratorOptions): Promise<void>;
//# sourceMappingURL=TrickplayGenerator.d.ts.map