SpeechDecoderBitrate Property |
Represents the bitrate the currently selected codec is using.
Namespace: StreamCoders.DecoderAssembly: MediaSuite (in MediaSuite.dll) Version: 2.0.5.0 (2.0.5.0)
Syntaxpublic int Bitrate { get; set; }
Public Property Bitrate As Integer
Get
Set
public:
property int Bitrate {
int get ();
void set (int value);
}
member Bitrate : int with get, set
Property Value
Type:
Int32
The bitrate.
Examplesdecoder = new StreamCoders.Decoder.SpeechDecoder();
decoder.SetCodec(StreamCoders.Codec.G711A);
decoder.Bitrate = 64000;
decoder.Init();
See Also