ft: Update 8D filter and add more filters (#50)
This commit is contained in:
parent
b1dbfe5918
commit
2a8a7a3da5
1 changed files with 13 additions and 5 deletions
|
@ -22,23 +22,31 @@ const Track = require('./Track')
|
||||||
* @property {boolean} [pulsator=false] Whether the pulsator filter is enabled.
|
* @property {boolean} [pulsator=false] Whether the pulsator filter is enabled.
|
||||||
* @property {boolean} [subboost=false] Whether the subboost filter is enabled.
|
* @property {boolean} [subboost=false] Whether the subboost filter is enabled.
|
||||||
* @property {boolean} [karaoke=false] Whether the karaoke filter is enabled.
|
* @property {boolean} [karaoke=false] Whether the karaoke filter is enabled.
|
||||||
|
* @property {boolean} [flanger=false] Whether the flanger filter is enabled.
|
||||||
|
* @property {boolean} [gate=false] Whether the gate filter is enabled.
|
||||||
|
* @property {boolean} [haas=false] Whether the haas filter is enabled.
|
||||||
|
* @property {boolean} [mcompand=false] Whether the mcompand filter is enabled.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const filters = {
|
const filters = {
|
||||||
bassboost: 'bass=g=20,dynaudnorm=f=200',
|
bassboost: 'bass=g=20,dynaudnorm=f=200',
|
||||||
'8D': 'apulsator=hz=0.128',
|
'8D': 'apulsator=hz=0.08',
|
||||||
vaporwave: 'asetrate=44100*0.8,aresample=44100,atempo=1.1',
|
vaporwave: 'aresample=48000,asetrate=48000*0.8',
|
||||||
nightcore: 'asetrate=44100*1.25',
|
nightcore: 'aresample=48000,asetrate=48000*1.25',
|
||||||
phaser: 'aphaser=in_gain=0.4',
|
phaser: 'aphaser=in_gain=0.4',
|
||||||
tremolo: 'tremolo',
|
tremolo: 'tremolo',
|
||||||
vibrato: 'vibrato=f=6.5',
|
vibrato: 'vibrato=f=6.5',
|
||||||
reverse: 'areverse',
|
reverse: 'areverse',
|
||||||
treble: 'treble=g=5',
|
treble: 'treble=g=5',
|
||||||
normalizer: 'dynaudnorm=f=150',
|
normalizer: 'dynaudnorm=f=200',
|
||||||
surrounding: 'surround',
|
surrounding: 'surround',
|
||||||
pulsator: 'apulsator=hz=1',
|
pulsator: 'apulsator=hz=1',
|
||||||
subboost: 'asubboost',
|
subboost: 'asubboost',
|
||||||
karaoke: 'stereotools=mlev=0.03'
|
karaoke: 'stereotools=mlev=0.03',
|
||||||
|
flanger: 'flanger',
|
||||||
|
gate: 'agate',
|
||||||
|
haas: 'haas',
|
||||||
|
mcompand: 'mcompand'
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue