audion.cscore icon indicating copy to clipboard operation
audion.cscore copied to clipboard

Spectrum Analyzer - Missing Features

Open YamiCodenamed opened this issue 7 years ago • 1 comments

Any plans to implement the possibility to change the spectrum range to something other than the default? For example explicitly state either the frequency range or ranges (in case you want to duplicate one in the spectrum, skip some or focus on only parts of it). Another feature which would be nice is an event when one of the frequencies passes half of the height of the control. To elaborate on this, for example bass detection

YamiCodenamed avatar Feb 20 '18 18:02 YamiCodenamed

public void adjustFrequency(int minFrequency, int maxFrequency) { _maximumFrequency=maxFrequency; _minimumFrequency=minFrequency; UpdateFrequencyMapping(); } Thats just an example. It does the trick as long as you give it correct values, but its just adjusting one range, you cant set multiple ranges to track (i guess having multiple Spectrums next to each other with different settings does the trick)

YamiCodenamed avatar Feb 27 '18 01:02 YamiCodenamed