Files
story-studio/remotion/node_modules/@remotion/media-parser/dist/normalize-video-rotation.js
2026-02-21 10:33:18 +01:00

8 lines
268 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.normalizeVideoRotation = void 0;
const normalizeVideoRotation = (rotation) => {
return ((rotation % 360) + 360) % 360;
};
exports.normalizeVideoRotation = normalizeVideoRotation;