UNPKG

mfx

Version:

In-browser video editing toolkit, with effects accelerated by WebGL

11 lines (10 loc) 349 B
import type { MFXEncodedChunk } from "../types"; import type { ExtendedVideoFrame } from "../frame"; import { ForwardedStream } from "../worker"; /** * @example */ export declare class MFXWorkerVideoEncoder extends ForwardedStream<ExtendedVideoFrame, MFXEncodedChunk> { get identifier(): string; constructor(config: VideoEncoderConfig); }