Rockbox Development > Feature Ideas
see any eq settings in wps
rbhawaii:
Hi,
I know i am able to see if eq is on or off in the wps, but i have not found a way to get eq settings info in to the wps... any additional eq info on the screen will do even the most basic info will be great to see.
Thanks
nick_p:
%St(treble)dB
%St(bass)dB
http://www.rockbox.org/wiki/CustomWPS#Showing_other_settings
http://download.rockbox.org/daily/manual/rockbox-sansaclipplus/rockbox-buildap5.html#x21-385000E
rbhawaii:
Thank you nick_p but i have been using %St(treble)dB %St(bass)dB for a few years inside of my wps, those sound setting indicators are different from eq enabled settings.
now regarding this ...
http://download.rockbox.org/daily/manual/rockbox-sansaclipplus/rockbox-buildap5.html#x21-385000E
can i see these values in my wps?
eq band 0 gain
eq band 1 gain
eq band 2 gain
eq band 3 gain
eq band 4 gain
saratoga:
If I understand nick's link correctly:
Example: Can be used as a simple tag %St(skip length) or with conditionals %?St(eq enabled)<Equalizer is enabled|Equalizer is disabled>
It would be:
%?St(eq band 0 gain)
[Saint]:
You could maybe do a 5 (or less) band graphic eq on the .wps I think...
You can't use the band gain values in a bar tag, but you could possibly use a bitmap strip for the 'bar' divided into enough individual segments that it could provide reasonably fluid movement (maybe 10 segments?) and do something like:
%xl(band_0,eq_band.bmp,0,0,10)
%xl(band_1,eq_band.bmp,0,0,10)
...and so on
%if(%St(eq band 0 gain),<=,value)<%xd(band_0,1)|%if(%St(eq band 0 gain),<=,value)<%xd(band_0,2)|%if(%St(eq band 0 gain),<=,value)<%xd(band_0,3)|...and so on>>>
%if(%St(eq band 1 gain),<=,value)<%xd(band_1,1)|%if(%St(eq band_1 gain),<=,value)<%xd(band_1,2)|%if(%St(eq band 1 gain),<=,value)<%xd(band_0,3)|...and so on>>>
...and so on
It is an untested hacky nested conditional monster...but, I _think_ it should work.
[Saint]
Navigation
[0] Message Index
[#] Next page
Go to full version