allgamerm-filters-api
A custom filter plugin for erela.js
It is recommended to read the documentation to start, and the guides to use the plugin.
NPM :
npm install erela.js-filters
Yarn :
yarn add erela.js-filters
Repository:
https://github.com/OpenianDevelopment/erela.js-filters
##Important
This is used to be Dev Release of Lavalink version.
Add nighcore filter to the player
Example: player.nightcore = true;
Add vaporwave filter to the player
Example: player.vaporwave = true;
Add Bass Boost filter to the player
Example: player.bassboost = true;
Add pop filter to the player
Example: player.pop = true;
Add soft filter to the player
Example: player.soft = true;
Add treble bass filter to the player
Example: player.treblebass = true;
Add 8D filter to the player
Example: player.eightD = true;
Add karaoke filter to the player
Example: player.karaoke = true;
Add vibrato filter to the player
Example: player.vibrato = true;
Add tremolo filter to the player
Example: player.tremolo = true;
Reset the filter Example: player.reset();
const { Manager } = require("erela.js");
const filter = require("erela.js-filters");
const manager = new Manager({
plugins: [
// Initiate the plugin
new filter()
]
});
// to add nightcore filter
<Player>.nightcore = true;
// to remove nightcore filter
<Player>.nightcore = false;