Rockbox.org home
Downloads
Release release
Dev builds dev builds
Extras extras
themes themes
Documentation
Manual manual
Wiki wiki
Device Status device status
Support
Forums forums
Mailing lists mailing lists
IRC IRC
Development
Bugs bugs
Patches patches
Dev Guide dev guide
Search



Donate

Rockbox Technical Forums


Login with username, password and session length
Home Help Search Staff List Login Register
News:

Rockbox Ports are now being developed for various digital audio players!

+  Rockbox Technical Forums
|-+  Rockbox Development
| |-+  Feature Ideas
| | |-+  see any eq settings in wps
« previous next »
  • Print
Pages: [1] 2

Author Topic: see any eq settings in wps  (Read 2923 times)

Offline rbhawaii

  • Member
  • *
  • Posts: 125
see any eq settings in wps
« on: December 20, 2012, 05:09:59 PM »
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
Logged

Offline nick_p

  • Member
  • *
  • Posts: 115
Re: see any eq settings in wps
« Reply #1 on: December 20, 2012, 08:58:19 PM »
%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
« Last Edit: December 20, 2012, 09:01:27 PM by nick_p »
Logged

Offline rbhawaii

  • Member
  • *
  • Posts: 125
Re: see any eq settings in wps
« Reply #2 on: December 20, 2012, 09:51:20 PM »
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
Logged

Offline saratoga

  • Developer
  • Member
  • *
  • Posts: 8974
Re: see any eq settings in wps
« Reply #3 on: December 20, 2012, 10:08:48 PM »
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)
Logged

Offline [Saint]

  • Rockbox Expert
  • Member
  • *
  • Posts: 1662
  • Hayden Pearce
    • Google+
Re: see any eq settings in wps
« Reply #4 on: December 21, 2012, 02:57:20 PM »
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]
« Last Edit: December 21, 2012, 03:00:44 PM by [Saint] »
Logged
Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline JdGordon

  • Member
  • *
  • Posts: 1817
  • Constantly breaking stuff
Re: see any eq settings in wps
« Reply #5 on: January 01, 2013, 02:48:43 AM »
It should be easier than that.... depending on what values those settings give you could just do %xd(band_1, %St(eq band 1 gain)). I also think i remember making a generic bar tag to work with any setting, dont know if that is a dream, or not commited, or what though.
Logged


Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline rbhawaii

  • Member
  • *
  • Posts: 125
Re: see any eq settings in wps
« Reply #6 on: January 02, 2013, 05:31:04 PM »
from what i understand %xd deals with images
my wps is text only , is there something that can be used with out images?
Logged

Offline JdGordon

  • Member
  • *
  • Posts: 1817
  • Constantly breaking stuff
Re: see any eq settings in wps
« Reply #7 on: January 02, 2013, 06:07:27 PM »
the answer in the first reply
Logged


Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline rbhawaii

  • Member
  • *
  • Posts: 125
Re: see any eq settings in wps
« Reply #8 on: January 02, 2013, 08:09:28 PM »
JdGordon,
i have been using  %St(treble)dB and %St(bass)dB for years already (read above)
my question is... is there a way for me to see any eq info besides eq being on or off in my simple text only wps



Logged

Offline JdGordon

  • Member
  • *
  • Posts: 1817
  • Constantly breaking stuff
Re: see any eq settings in wps
« Reply #9 on: January 02, 2013, 08:13:31 PM »
Quote from: saratoga on December 20, 2012, 10:08:48 PM
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)

^
Logged


Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline rbhawaii

  • Member
  • *
  • Posts: 125
Re: see any eq settings in wps
« Reply #10 on: January 02, 2013, 08:26:48 PM »
i just tried
%?St(eq band 0 gain)

and it brakes the entire wps and reverts to rb default wps
......?

what am i doing wrong

Logged

Offline JdGordon

  • Member
  • *
  • Posts: 1817
  • Constantly breaking stuff
Re: see any eq settings in wps
« Reply #11 on: January 02, 2013, 08:37:49 PM »
cool... file a bug!
Logged


Using PMs to annoy devs about bugs/patches is not a good way to have the issue looked at.

Offline rbhawaii

  • Member
  • *
  • Posts: 125
Re: see any eq settings in wps
« Reply #12 on: January 02, 2013, 09:24:36 PM »
this happend in the ipod simulator so can anyone else verify this?
because before JdGordon said this should work i was under the impression this does not work so im not even sure this is a bug
Logged

Offline nick_p

  • Member
  • *
  • Posts: 115
Re: see any eq settings in wps
« Reply #13 on: January 02, 2013, 09:51:59 PM »
Quote from: rbhawaii on January 02, 2013, 08:26:48 PM
i just tried
%?St(eq band 0 gain)

and it brakes the entire wps and reverts to rb default wps
......?

what am i doing wrong

This looks like a conditional context, try without the question mark;

%St(eq band 0 gain)
Logged

Offline rbhawaii

  • Member
  • *
  • Posts: 125
Re: see any eq settings in wps
« Reply #14 on: January 02, 2013, 10:12:40 PM »
IT     WORKS!

:)
Logged

  • Print
Pages: [1] 2
« previous next »
+  Rockbox Technical Forums
|-+  Rockbox Development
| |-+  Feature Ideas
| | |-+  see any eq settings in wps
 

  • SMF 2.0.17 | SMF © 2019, Simple Machines
  • Rockbox Privacy Policy
  • XHTML
  • RSS
  • WAP2

Page created in 0.094 seconds with 15 queries.