@calipsa/video-utils
Version:
Video utilities
11 lines (10 loc) • 404 B
TypeScript
/// <reference types="node" />
import { FfmpegCommand, FfmpegCommandOptions } from 'fluent-ffmpeg';
interface Options {
path: string;
time: number;
ffmpegCommandOptions?: FfmpegCommandOptions;
configureFfmpeg?: (ffmpegCommand: FfmpegCommand) => void;
}
declare const _default: ({ path, time, ffmpegCommandOptions, configureFfmpeg, }: Options) => Promise<Buffer>;
export default _default;