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. |
| 8 | * After editing the .eq file, you may need to reboot your Rockbox. |
| 9 | |
| 10 | File Location |
| 11 | ------------- |
| 12 | The files may reside anywhere on the hard disk. The only restriction is that |
| 13 | the filename must end in .eq |
| 14 | |
| 15 | Format Rules |
| 16 | ------------ |
| 17 | * Each setting must have it's own line |
| 18 | * The setting you wish to change must be in brackets. |
| 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 |
| 23 | depending on the model, a Syntax Error will be displayed and the value |
| 24 | will be set to the default value. |
| 25 | |
| 26 | Example File |
| 27 | ------------ |
| 28 | [volume]70#(0 to 100) |
| 29 | [bass]11#(-15 to 15 [Range depends on MAS]) |
| 30 | [treble]12#(-15 to 15 [Range depends on MAS]) |
| 31 | [balance]0#(-100 to 100) |
| 32 | |
| 33 | This sets each line to the respective values after it. Notice that you can put comments after the # |