✨ Added mono output (#213)
This commit is contained in:
parent
36e1cdc56b
commit
bddf518277
1 changed files with 3 additions and 1 deletions
|
@ -30,6 +30,7 @@ const Client = new soundcloud.Client()
|
||||||
* @property {boolean} [gate=false] Whether the gate 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} [haas=false] Whether the haas filter is enabled.
|
||||||
* @property {boolean} [mcompand=false] Whether the mcompand filter is enabled.
|
* @property {boolean} [mcompand=false] Whether the mcompand filter is enabled.
|
||||||
|
* @property {boolean} [mono=false] Whether the mono output is enabled.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const filters = {
|
const filters = {
|
||||||
|
@ -50,7 +51,8 @@ const filters = {
|
||||||
flanger: 'flanger',
|
flanger: 'flanger',
|
||||||
gate: 'agate',
|
gate: 'agate',
|
||||||
haas: 'haas',
|
haas: 'haas',
|
||||||
mcompand: 'mcompand'
|
mcompand: 'mcompand',
|
||||||
|
mono: 'pan=mono|c0=.5*c0+.5*c1'
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue