From bddf5182770d94dc1a94dba9245ec36f8ad230ea Mon Sep 17 00:00:00 2001 From: sagu <16504129+sagudev@users.noreply.github.com> Date: Sun, 27 Dec 2020 17:00:11 +0100 Subject: [PATCH] :sparkles: Added mono output (#213) --- src/Player.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Player.js b/src/Player.js index ddcd1fe..ba05774 100644 --- a/src/Player.js +++ b/src/Player.js @@ -30,6 +30,7 @@ const Client = new soundcloud.Client() * @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. + * @property {boolean} [mono=false] Whether the mono output is enabled. */ const filters = { @@ -50,7 +51,8 @@ const filters = { flanger: 'flanger', gate: 'agate', haas: 'haas', - mcompand: 'mcompand' + mcompand: 'mcompand', + mono: 'pan=mono|c0=.5*c0+.5*c1' } /**