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.

7 lines (6 loc) 269 B
// storage/StorageProvider.ts export abstract class StorageProvider { abstract saveChunk(chunkPath: string, data: Buffer): Promise<void>; abstract getChunk(chunkPath: string): Promise<Buffer>; abstract deleteChunk(chunkPath: string): Promise<void>; }