Raise max encoder bitrate to 512kbps

Any higher is useless for opus anyways.
This commit is contained in:
Imayhaveborkedit 2019-06-19 18:29:00 -04:00 committed by Rapptz
parent 94c0cb0d5c
commit 20fa3001f2

View File

@ -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