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) 416 B
import { VideoEngine } from '../core/VideoEngine'; import { QualityLevel } from '../core/types'; export declare class GStreamerEngine 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>; }