Add .gitignore to exclude all node packages and lock files

This commit is contained in:
Adolfo Reyna
2026-02-23 21:56:04 -05:00
parent faae96c9ed
commit dcc5c6c044
9747 changed files with 1555105 additions and 2 deletions
@@ -0,0 +1,43 @@
"use strict";
// Determines the filenames for frames that get rendered.
// - If passed to FFMPEG, they should be consecutive: element-000.jpg, element-001.jpg, element-002.jpg
// - If `--every-nth-frame` is passed, only frames 0, 2, 4 are rendered
// - If an image sequence is created, the filenames should correspond to the frame numbers: element-099.jpg, element-100.jpg
Object.defineProperty(exports, "__esModule", { value: true });
exports.getFilePadLength = exports.getFrameOutputFileName = exports.getFrameOutputFileNameFromPattern = void 0;
const getFrameOutputFileNameFromPattern = ({ pattern, frame, ext, }) => {
return pattern.replace(/\[frame\]/g, frame).replace(/\[ext\]/g, ext);
};
exports.getFrameOutputFileNameFromPattern = getFrameOutputFileNameFromPattern;
const getFrameOutputFileName = ({ index, frame, imageFormat, countType, lastFrame, totalFrames, imageSequencePattern, }) => {
const filePadLength = (0, exports.getFilePadLength)({ lastFrame, countType, totalFrames });
const frameStr = countType === 'actual-frames'
? String(frame).padStart(filePadLength, '0')
: String(index).padStart(filePadLength, '0');
if (imageSequencePattern) {
return (0, exports.getFrameOutputFileNameFromPattern)({
pattern: imageSequencePattern,
frame: frameStr,
ext: imageFormat,
});
}
const prefix = 'element';
if (countType === 'actual-frames') {
return `${prefix}-${frameStr}.${imageFormat}`;
}
if (countType === 'from-zero') {
return `${prefix}-${frameStr}.${imageFormat}`;
}
throw new TypeError('Unknown count type');
};
exports.getFrameOutputFileName = getFrameOutputFileName;
const getFilePadLength = ({ lastFrame, totalFrames, countType, }) => {
if (countType === 'actual-frames') {
return String(lastFrame).length;
}
if (countType === 'from-zero') {
return String(totalFrames - 1).length;
}
throw new Error('Unknown file type');
};
exports.getFilePadLength = getFilePadLength;