Files
clawbot/skills/remotion-prompt-video/node_modules/@remotion/webcodecs/dist/calculate-progress.js

11 lines
384 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.calculateProgress = void 0;
const calculateProgress = ({ millisecondsWritten, expectedOutputDurationInMs, }) => {
if (expectedOutputDurationInMs === null) {
return null;
}
return millisecondsWritten / expectedOutputDurationInMs;
};
exports.calculateProgress = calculateProgress;