renoise.song().instruments[].volume
A few questions about this field:
Is there a way to convert this value to a “pretty” string showing the gain in db?
renoise.song().instruments[].volume
A few questions about this field:
Is there a way to convert this value to a “pretty” string showing the gain in db?
– Converts a dB value to a linear value
– > example: print(math.db2lin(math.infdb)) -> 0
– > print(math.db2lin(6.0)) -> 1.9952623149689
math.db2lin(number) -> [number]
– db values at and below this value will be treated as silent (linearly 0)
math.infdb -> [-200]
Excellent - thank you so much!