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.

16 lines (15 loc) 324 B
// src/core/events.ts /** * Options: * * - CHUNK_PROCESSED * - QUALITY_PROCESSED * - PROCESSING_COMPLETE * - ERROR */ export enum VideoEvent { CHUNK_PROCESSED = 'chunkProcessed', QUALITY_PROCESSED = 'qualityProcessed', PROCESSING_COMPLETE = 'processingComplete', ERROR = 'error' }