Remarks
Retrieves a specific encoding bitrate (Constant Bitrate or CBR) supported by Lame for a given recording format.
The number of available bitrates can be obtained using the EncodeFormats.MP3.GetLameEncodingBitratesCount method.
This method can be called only when the Status property is different from RECORD_STATUS_NOT_READY.
For further details about encoding and resampling options refer to the EncodeMp3 class section.
For further information about available encoding formats see the EncodeFormatsMan class.
Syntax
[Visual Basic]
Public Function GetLameEncodingBitrate (
nInputDevice as Int16,
nFormatIndex as Int16,
nBitrateIndex as Int16
) as Int32
|
|
[C#]
public Int32 GetLameEncodingBitrate (
Int16 nInputDevice,
Int16 nFormatIndex,
Int16 nBitrateIndex
);
|
|
[C++]
public: Int32 GetLameEncodingBitrate (
Int16 nInputDevice,
Int16 nFormatIndex,
Int16 nBitrateIndex
);
|
|
Parameter
|
Description
|
|
|
nInputDevice
|
Number representing the zero-based index of the input device
|
nFormatIndex
|
Number representing the zero-based index of the native resampling format.
The number of native resampling formats supported by the given input device can be obtained using the EncodeFormats.ResampleNativeFormatsGetCount method and their friendly description can be obtained using the EncodeFormats.ResampleNativeFormatGetDesc method.
|
nBitrateIndex
|
Number representing the zero-based index of the bitrate
|
Return value
Value
|
Meaning
|
|
|
Negative value
|
An error occurred. Check the LastError property value in order to see the last error.
|
> 0
|
The requested encoding costant bitrate
|
|