UNPKG
winamp-eqf
Version:
latest (1.0.0)
next (0.0.0-next-3a898b4)
1.0.0
0.1.1
0.1.0
0.0.0-next-f35f124
0.0.0-next-eaba966
0.0.0-next-e99b2ab
0.0.0-next-e82db4c
0.0.0-next-d87cb6f
0.0.0-next-cb651ad
0.0.0-next-c2c0675
0.0.0-next-b7d7596
0.0.0-next-b764910
0.0.0-next-b090082
0.0.0-next-acff24b
0.0.0-next-a20bab1
0.0.0-next-a0cecb8
0.0.0-next-9b03dcd
0.0.0-next-910995d
0.0.0-next-8425ada
0.0.0-next-7cdc35b
0.0.0-next-6f8f85c
0.0.0-next-6147659
0.0.0-next-54dbe36
0.0.0-next-41cfbbb
0.0.0-next-3a898b4
0.0.0-next-3a1ec73
0.0.0-next-35e6128
0.0.0-next-2fe3235
0.0.0-next-27ba138
0.0.0-next-26e8e6d
0.0.0-next-224b4b8
Parse and create Winamp .EQF files which describe equalizer settings
winamp-eqf
/
constants.js
21 lines
(18 loc)
•
271 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var
PRESET_VALUES
=
[
"hz60"
,
"hz170"
,
"hz310"
,
"hz600"
,
"hz1000"
,
"hz3000"
,
"hz6000"
,
"hz12000"
,
"hz14000"
,
"hz16000"
,
"preamp"
];
var
HEADER
=
"Winamp EQ library file v1.1"
;
module
.
exports
= { PRESET_VALUES: PRESET_VALUES, HEADER: HEADER };