summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/CUSTOM_EQ_FORMAT40
1 files changed, 23 insertions, 17 deletions
diff --git a/docs/CUSTOM_EQ_FORMAT b/docs/CUSTOM_EQ_FORMAT
index e1ba622a0e..e1b0810bca 100644
--- a/docs/CUSTOM_EQ_FORMAT
+++ b/docs/CUSTOM_EQ_FORMAT
@@ -5,7 +5,6 @@ Description / General Info
5-------------------------- 5--------------------------
6* The Custom EQ is used on both the Rockbox Player and Recorder, in order to 6* The Custom EQ is used on both the Rockbox Player and Recorder, in order to
7 load, well, custom eq settings. 7 load, well, custom eq settings.
8* After editing the .eq file, you may need to reboot your Rockbox.
9 8
10File Location 9File Location
11------------- 10-------------
@@ -14,24 +13,31 @@ the filename must end in .eq
14 13
15Format Rules 14Format Rules
16------------ 15------------
17* Each setting must have it's own line 16* Each setting must have it's own line.
18* The setting you wish to change must be in brackets. 17* Lines starting with # are ignored.
19* The value must be immediately after the end bracket, with no spaces.
20* There must be a # immediately after the value, with no spaces
21* Any text after the # will be ignored
22* If a value is out of the acceptable range for the device, which can vary 18* If a value is out of the acceptable range for the device, which can vary
23 depending on the model, a Syntax Error will be displayed and the value 19 depending on the model, the value will be set to its default value.
24 will be set to the default value.
25 20
26Example File 21Example File
27------------ 22------------
28[volume]70# 0 to 100 23volume: 70
29[bass]11# player: -15 to 15, recorder: -12 to 12 24bass: 11
30[treble]12# player: -15 to 15, recorder: -12 to 12 25treble: 12
31[balance]0# -100 to 100 26balance: 0
32[channels]0# 0=Stereo, 1=Mono, 2=Mono Left, 3=Mono Right 27channels: 0
33[loudness]5# 0 to 17, recorder only! 28loudness: 5
34[bass boost]30# 0 to 100, recorder only! 29bass boost: 30
35[auto volume]0# 0=off, 1=2s, 2=4s, 3=8s, recorder only! 30auto volume: 0
36 31
37This sets each line to the respective values after it. Notice that you can put comments after the # \ No newline at end of file 32This sets each line to the respective values after it.
33
34Value ranges
35------------
36volume: 0 to 100
37bass: player: -15 to 15, recorder: -12 to 12
38treble: player: -15 to 15, recorder: -12 to 12
39balance: -100 to 100
40channels: 0=Stereo, 1=Mono, 2=Mono Left, 3=Mono Right
41loudness: 0 to 17 (recorder only)
42bass boost: 0 to 100 (recorder only)
43auto volume: 0=off, 1=2s, 2=4s, 3=8s (recorder only)