init commit
This commit is contained in:
17
remotion/node_modules/@remotion/renderer/dist/assets/round-volume-to-avoid-stack-overflow.js
generated
vendored
Normal file
17
remotion/node_modules/@remotion/renderer/dist/assets/round-volume-to-avoid-stack-overflow.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
"use strict";
|
||||
// FFMPEG allows expressions to have a maximum depth of 100.
|
||||
// As defined here: https://github.com/FFmpeg/FFmpeg/blob/2014b0135293c41d261757bfa1aaba51653bab8e/libavutil/eval.c#L706
|
||||
// With one depth added by the if/else statement,
|
||||
// this means we can have a maximum of 99 different volumes.
|
||||
// Therefore we round the volumes (which can only be between 0 and 1)
|
||||
// so that there are only 99 possible values.
|
||||
// We then subtract 1 again because FFMPEG is not precise and queries out of range
|
||||
// values, for which we have to provide a default
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.roundVolumeToAvoidStackOverflow = void 0;
|
||||
const MAX_FFMPEG_STACK_DEPTH = 98;
|
||||
const roundVolumeToAvoidStackOverflow = (volume) => {
|
||||
return Number((Math.round(volume * (MAX_FFMPEG_STACK_DEPTH - 1)) /
|
||||
(MAX_FFMPEG_STACK_DEPTH - 1)).toFixed(3));
|
||||
};
|
||||
exports.roundVolumeToAvoidStackOverflow = roundVolumeToAvoidStackOverflow;
|
||||
Reference in New Issue
Block a user