The problem i'm facing with is voicemeeter shows different value for level than my app reads from API.
Example:

I'm using this formula to convert value that api gives me:
Code: Select all
lLevel = Math.max(-80, Math.min(12, 10 * Math.log10(volumeLeft)));
rLevel = Math.max(-80, Math.min(12, 10 * Math.log10(volumeRight)));
Code: Select all
volumeLeft = Voicemeeter.getLevel(3, (ID * 8));
volumeRight = Voicemeeter.getLevel(3, (ID * 8) + 1);
Am I supposed to use different formula or type for reading from API?
EDIT: The difference between value that shows Voicemeeter and logged out from my app is not constant.