public class OpusCodec extends AudioCodec
Constructor and Description |
---|
OpusCodec() |
OpusCodec(int maxAverageBitrate)
A constructor to initialize the OpusCodec with non-default attributes.
|
Modifier and Type | Method and Description |
---|---|
int |
getMaxAverageBitrate() |
getName, toString
public static final String NAME
public OpusCodec()
public OpusCodec(int maxAverageBitrate)
maxAverageBitrate
- `maxAverageBitrate` - The maximum average audio bitrate to use, in
bits per second (bps) based on [RFC-7587 7.1](https://tools.ietf.org/html/rfc7587#section-7.1).
By default, the setting is not used. If you specify 0, then the
setting is not used. Any positive integer is allowed, but values
outside the range 6000 to 510000 are ignored and treated as 0. The
recommended bitrate for speech is between 8000 and 40000 bps as noted
in [RFC-7587 3.1.1](https://tools.ietf.org/html/rfc7587#section-3.1.1).5.2.0