mes-engine
Version:
A powerful and flexible video processing framework for Node.js with support for multiple processing engines, adaptive streaming, and intelligent caching.
7 lines (6 loc) • 322 B
TypeScript
import { VideoEngine } from '../core/VideoEngine';
import { QualityLevel } from '../core/types';
export declare class FFmpegEngine extends VideoEngine {
processChunk(inputPath: string, outputPath: string, startTime: number, quality: QualityLevel): Promise<void>;
getDuration(inputPath: string): Promise<number>;
}