$removeFilter
$removeFilter will remove given filters.
Usage
$removeFilter[filter]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| filter | string | JSON format | true |
| Filter | Contains | JSON Format |
|---|---|---|
| NIGHT_CORE | aresample, asetrate | {"NIGHT_CORE": "value"} |
| BASS_BOOST | bass | {"BASS_BOOST": "value"} |
| 8_D | extrastereo, aecho, apulsator, stereowiden | {"8_D": "value"} |
| PITCH | asetrate, atempo, aresample | {"PITCH": "value"} |
| KAROAKE | stereotools | {"KAROAKE": "value"} |
| SLOWED | asetrate, aresample | {"SLOWED": "value"} |
| DEEP | asetrate, atempo, aresample | {"DEEP": "value"} |
| TREBLE_BOOST | treble | {"TREBLE_BOOST": "value"} |
| GATE | agate | {"GATE": "value"} |
| VIBRATO | vibrato | {"VIBRATO": "value"} |
| FLANGER | flanger | {"FLANGER": "value"} |
| PHASER | aphaser | {"PHASER": "value"} |
Example(s)
This will remove the NIGHT_CORE and BASS_BOOST filters:
1client.command({2 name: "removeFilter",3 code: `4 $removeFilter[{"NIGHT_CORE", "BASS_BOOST"}]5 `6});