UNPKG

@calipsa/video-utils

Version:
12 lines (11 loc) 481 B
/// <reference types="node" /> import type { FfprobeData, FfmpegCommandOptions, FfmpegCommand } from 'fluent-ffmpeg'; interface Options { path: string; numFrames: number; videoMetadata: FfprobeData; ffmpegCommandOptions?: FfmpegCommandOptions; configureFfmpeg?: (ffmpegCommand: FfmpegCommand) => void; } declare const _default: ({ path, numFrames, videoMetadata, ffmpegCommandOptions, configureFfmpeg, }: Options) => Promise<Buffer[]>; export default _default;