UNPKG

mes-engine

Version:

A powerful and flexible video processing framework for Node.js with support for multiple processing engines, adaptive streaming, and intelligent caching.

8 lines (7 loc) 419 B
import { VideoEngine } from '../core/VideoEngine.js'; import { QualityLevel } from '../core/types.js'; export declare class FFmpegEngine extends VideoEngine { processChunk(inputPath: string, outputPath: string, startTime: number, quality: QualityLevel): Promise<void>; extractScreenshot(inputPath: string, outputPath: string, time: number): Promise<void>; getDuration(inputPath: string): Promise<number>; }