konowebcodecs/packages/ffmpeg/src/errors.ts
2023-01-09 22:47:39 +08:00

6 lines
254 B
TypeScript

export const ERROR_UNKNOWN_MESSAGE_TYPE = new Error("unknown message type");
export const ERROR_NOT_LOADED = new Error(
"ffmpeg is not loaded, call `await ffmpeg.load()` first"
);
export const ERROR_TERMINATED = new Error("called FFmpeg.terminate()");