blob: e1b0810bca9aeaf5c7c88bba3ddc57727591140d [file] [log] [blame]
Justin Heiner94d3ba22002-09-06 06:20:15 +00001Custom EQ
2File Format Specifications
3
4Description / General Info
5--------------------------
6* The Custom EQ is used on both the Rockbox Player and Recorder, in order to
7 load, well, custom eq settings.
Justin Heiner94d3ba22002-09-06 06:20:15 +00008
9File Location
10-------------
11The files may reside anywhere on the hard disk. The only restriction is that
12the filename must end in .eq
13
14Format Rules
15------------
Björn Stenberg0e6088f2002-10-02 16:33:26 +000016* Each setting must have it's own line.
17* Lines starting with # are ignored.
Justin Heiner94d3ba22002-09-06 06:20:15 +000018* If a value is out of the acceptable range for the device, which can vary
Björn Stenberg0e6088f2002-10-02 16:33:26 +000019 depending on the model, the value will be set to its default value.
Justin Heiner94d3ba22002-09-06 06:20:15 +000020
21Example File
22------------
Björn Stenberg0e6088f2002-10-02 16:33:26 +000023volume: 70
24bass: 11
25treble: 12
26balance: 0
27channels: 0
28loudness: 5
29bass boost: 30
30auto volume: 0
Justin Heiner94d3ba22002-09-06 06:20:15 +000031
Björn Stenberg0e6088f2002-10-02 16:33:26 +000032This 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)