tjscience / audion.cscore

An audio visualization and processing framework for WPF
MIT License
33 stars 7 forks source link

Spectrum Analyzer - Missing Features #10

Open YamiCodenamed opened 6 years ago

YamiCodenamed commented 6 years ago

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 commented 6 years ago

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)