UNPKG

mfx

Version:

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

6 lines (5 loc) 257 B
export type AVCProfileLevel = "baseline" | "main" | "high"; export type AVCLevel = "3.0" | "3.1" | "4.0" | "4.1" | "4.2" | "5.0" | "5.1" | "5.2"; export declare const avc: { generateCodecString: (profile: AVCProfileLevel, level: AVCLevel) => string; };