Click or drag to resize
SpeechDecoderBitrate Property
Represents the bitrate the currently selected codec is using.

Namespace: StreamCoders.Decoder
Assembly: MediaSuite (in MediaSuite.dll) Version: 2.0.5.0 (2.0.5.0)
Syntax
public int Bitrate { get; set; }

Property Value

Type: Int32
The bitrate.
Examples
decoder = new StreamCoders.Decoder.SpeechDecoder();
decoder.SetCodec(StreamCoders.Codec.G711A);
decoder.Bitrate = 64000;
decoder.Init();
See Also