UNPKG

@remotion/media-parser

Version:

A pure JavaScript library for parsing video files

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