mirror of
https://github.com/captbaritone/webamp.git
synced 2026-01-23 18:25:30 +00:00
9 lines
307 B
JavaScript
Executable file
9 lines
307 B
JavaScript
Executable file
const fs = require("fs");
|
|
const path = require("path");
|
|
const { parser } = require("winamp-eqf");
|
|
|
|
const presetsPath = path.join(__dirname, "../presets/winamp.q1");
|
|
const content = fs.readFileSync(presetsPath);
|
|
const presetObjects = parser(content);
|
|
|
|
console.log(JSON.stringify(presetObjects, null, " "));
|