diff --git a/src/client/voice/player/BasePlayer.js b/src/client/voice/player/BasePlayer.js index 45009c20f..bb0de6bb7 100644 --- a/src/client/voice/player/BasePlayer.js +++ b/src/client/voice/player/BasePlayer.js @@ -48,7 +48,7 @@ class BasePlayer extends EventEmitter { playPCMStream(stream, options, streams = {}) { this.destroyDispatcher(); - const opus = streams.opus = new prism.opus.Encoder({ channels: 2, rate: 48000, frameSize: 960 }); + const opus = streams.opus = new prism.opus.Encoder({ channels: 2, rate: 48000, frameSize: 1920 }); if (options && options.volume === false) { stream.pipe(opus); return this.playOpusStream(opus, options, streams);