I have an experiment where my program picks up audio from my speakers (in decibels...sort of). The range is usually between about 0 and 20. I want to take that value and map it to a range between 0 and 1 so that I can scale an item in proportion to the volume coming through the speakers. So if the audio was 20 db, the scale would be 1. If the audio was 0 dB, the scale would be 0. How do I do this? I'm using Unity3D, if that gives anyone an idea for a helper function.
|
closed as not a real question by Michael Durrant, casperOne♦ Jun 29 '12 at 3:16
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
Divide it by 20, if that is truly the maximum.
or
|
|||||
|
|
If you don't want to uniformly squash the distribution by division, you could use an appropriate logarithm or exponential. To use the logarithm, shift your data so that the smallest value is 1, then take the log (any base) and use division to scale that down. This will give more weight to values at the lower end, and diminishing returns on greater values. Using an exponential might be more appropriate for decibels, since they are already a logarithmic scale. Simply raise some constant to each value, and then divide by the greatest result. This will do the opposite of the logarithmic scaling; big numbers will widen the gap between each other while smaller numbers will get closer together. |
|||
|
|