AzuraCast/frontend/src/functions/getLogarithmicVolume.ts

4 lines
122 B
TypeScript

export default function (volume: number): number {
return Math.min((Math.exp(volume / 100) - 1) / (Math.E - 1), 1);
}