So, I've been revisiting the spectrum analyzer skin for the more difficult task of finding out the Winamp frequencies and their range, and took a "peak" at the AudioLevel code to find out how the Type=BandFreq are computed. I don't know if this is what you meant with the lack of success using them, but, if someone is interested...You can see the Frequency for each Band by creating child measures of the Type=BandFreq to see the frequency of each band; I have not had success when trying to use this and actually I do not care that much about the actual frequency because the entire frequency range will be displayed based on the number of defined Bands.
Assuming that the below options are set to those variables in the AudioLevel parent measure:
Code:
Bands=#Bands#FreqMin=#FqMin#FreqMax=#FqMax#
Code:
FreqS=(Ln(#FqMax#/#FqMin#)/#Bands#/Ln(2))Freq0=(#FqMin#*2**(#FreqS#/2))Freq1=(#Freq0#*2**(#FreqS#/1))Freq2=(#Freq1#*2**(#FreqS#/1))Freq3=(#Freq2#*2**(#FreqS#/1))... and so on till FreqN, where N=(#Bands#-1) ...
Code:
FreqMin=53.43426FreqMax=8617.31790
Hopefully the above will be of some use for anyone reading this and looking for how those values are set.
Statistics: Posted by Yincognito — Yesterday, 9:13 pm