Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
EncodeFormats.WMA.EncodeMode property 
 
Type
[Visual Basic] 
Public Property EncodeMode As enumWmaEncodeModes
 
[C#] 
public enumWmaEncodeModes EncodeMode {get; set;}
 
[C++] 
public: __property enumWmaEncodeModes get_EncodeMode(); 
public: __property void set_EncodeMode(enumWmaEncodeModes);
 
 
Remarks
The encoding mode used for WMA (Windows Media Audio) format during recording or CD ripping sessions. 
Supported values are the following: 
Mnemonic Value
Numeric value
Meaning
WMA_ENCODE_VBR_QUALITY
0
Encode using the Variable Bitrate (VBR) quality specified inside the EncodeFormats.WMA.Quality property
WMA_ENCODE_CBR
1
Encode using the Constant Bitrate (CBR) specified inside the EncodeFormats.WMA.CBR property
 
This property is used only in the following situations: 
  • During a recording session if the EncodeFormats.ForRecording property is set to ENCODING_FORMAT_WMA (for further details see the How to perform a recording session section). 
  • During a CD ripping session if the EncodeFormats.ForCdRipping property is set to ENCODING_FORMAT_WMA (for further details see the How to perform a CD ripping session section). 
  • During an exporting session if the EncodeFormats.ForExporting property is set to ENCODING_FORMAT_WMA (for further details see the How to export a recorded sound section). 
  •  
    For further details about encoding in WMA format refer to the EncodeWMA class section. 
    For further information about available encoding formats see the EncodeFormatsMan class.
     
     
     
     
     
     
     
     
    Copyright © 2006 - 2008 MultiMedia Soft 
    Return to Table of contents