Justin Heiner | 94d3ba2 | 2002-09-06 06:20:15 +0000 | [diff] [blame] | 1 | Custom EQ |
| 2 | File Format Specifications |
| 3 | |
| 4 | Description / 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 Heiner | 94d3ba2 | 2002-09-06 06:20:15 +0000 | [diff] [blame] | 8 | |
| 9 | File Location |
| 10 | ------------- |
| 11 | The files may reside anywhere on the hard disk. The only restriction is that |
| 12 | the filename must end in .eq |
| 13 | |
| 14 | Format Rules |
| 15 | ------------ |
Björn Stenberg | 0e6088f | 2002-10-02 16:33:26 +0000 | [diff] [blame^] | 16 | * Each setting must have it's own line. |
| 17 | * Lines starting with # are ignored. |
Justin Heiner | 94d3ba2 | 2002-09-06 06:20:15 +0000 | [diff] [blame] | 18 | * If a value is out of the acceptable range for the device, which can vary |
Björn Stenberg | 0e6088f | 2002-10-02 16:33:26 +0000 | [diff] [blame^] | 19 | depending on the model, the value will be set to its default value. |
Justin Heiner | 94d3ba2 | 2002-09-06 06:20:15 +0000 | [diff] [blame] | 20 | |
| 21 | Example File |
| 22 | ------------ |
Björn Stenberg | 0e6088f | 2002-10-02 16:33:26 +0000 | [diff] [blame^] | 23 | volume: 70 |
| 24 | bass: 11 |
| 25 | treble: 12 |
| 26 | balance: 0 |
| 27 | channels: 0 |
| 28 | loudness: 5 |
| 29 | bass boost: 30 |
| 30 | auto volume: 0 |
Justin Heiner | 94d3ba2 | 2002-09-06 06:20:15 +0000 | [diff] [blame] | 31 | |
Björn Stenberg | 0e6088f | 2002-10-02 16:33:26 +0000 | [diff] [blame^] | 32 | This sets each line to the respective values after it. |
| 33 | |
| 34 | Value ranges |
| 35 | ------------ |
| 36 | volume: 0 to 100 |
| 37 | bass: player: -15 to 15, recorder: -12 to 12 |
| 38 | treble: player: -15 to 15, recorder: -12 to 12 |
| 39 | balance: -100 to 100 |
| 40 | channels: 0=Stereo, 1=Mono, 2=Mono Left, 3=Mono Right |
| 41 | loudness: 0 to 17 (recorder only) |
| 42 | bass boost: 0 to 100 (recorder only) |
| 43 | auto volume: 0=off, 1=2s, 2=4s, 3=8s (recorder only) |