UNPKG

@jrmc/adonis-attachment

Version:

Turn any field on your Lucid model to an attachment data type

19 lines 532 B
/** * @jrmc/adonis-attachment * * @license MIT * @copyright Jeremy Chaufourier <jeremy@chaufourier.fr> */ import { FfmpegMetadata } from '../types/metadata.js'; export default class FFmpeg { #private; private input; constructor(input: string); screenshots(options: { time: number; }): Promise<string | undefined>; exif(): Promise<FfmpegMetadata>; setFfmpegPath(ffmpegPath: string): Promise<void>; setFfprobePath(ffprobePath: string): Promise<void>; } //# sourceMappingURL=ffmpeg.d.ts.map