UNPKG

@calipsa/video-utils

Version:
11 lines (10 loc) 404 B
/// <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;