ffmpeg-progress-wrapper
Version:
A simple wrapper that helps with determinng the progress of the ffmpeg conversion
17 lines • 482 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class FFMpegError extends Error {
constructor() {
super(...arguments);
this.name = "FFMpegError";
}
}
exports.FFMpegError = FFMpegError;
class FFMpegOutOfMemoryError extends FFMpegError {
constructor() {
super(...arguments);
this.name = 'FFMpegOutOfMemoryError';
}
}
exports.FFMpegOutOfMemoryError = FFMpegOutOfMemoryError;
//# sourceMappingURL=error.js.map