UNPKG

mfx

Version:

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

13 lines (11 loc) 451 B
import type { EncoderOptions as GIFEncoderOptions } from "modern-gif/index"; export interface ContainerEncoderConfig { video?: VideoEncoderConfig; audio?: AudioEncoderConfig; gif?: GIFEncoderOptions; // Buffer size of encoder before a chunk is streamed, may not be respected by every container encoder chunkSize?: number; // Configure whether encoding is meant for livestreaming or storage streaming?: boolean; faststart?: boolean; }