aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--discord/opus.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/opus.py b/discord/opus.py
index 70ed8056..9ad6b11c 100644
--- a/discord/opus.py
+++ b/discord/opus.py
@@ -240,7 +240,7 @@ class Encoder:
return _lib.opus_encoder_create(self.SAMPLING_RATE, self.CHANNELS, self.application, ctypes.byref(ret))
def set_bitrate(self, kbps):
- kbps = min(128, max(16, int(kbps)))
+ kbps = min(512, max(16, int(kbps)))
_lib.opus_encoder_ctl(self._state, CTL_SET_BITRATE, kbps * 1024)
return kbps