Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
EncodeFormats.AAC.EncodeMode property 
 
Type
[Visual Basic] 
Public Property EncodeMode As enumAacEncodeModes
 
[C#] 
public enumAacEncodeModes EncodeMode {get; set;}
 
[C++] 
public: __property enumAacEncodeModes get_EncodeMode(); 
public: __property void set_EncodeMode(enumAacEncodeModes);
 
 
Remarks
The encoding mode used for AAC and MP4 format during recording, exporting or CD ripping sessions. 
Supported values are the following: 
Mnemonic Value
Numeric value
Meaning
AAC_ENCODE_VBR_QUALITY
0
Encode using the Variable Bitrate (VBR) quality specified inside the EncodeFormats.AAC.Quality property.
AAC_ENCODE_CUSTOM
1
Encode using the custom string defined inside the EncodeFormats.AAC.CustomString property.
 
 
This property is used only in the following situations: 
  • During a recording session if the EncodeFormats.ForRecording property is set to ENCODING_FORMAT_AAC (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_AAC (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_AAC (for further details see the How to export a recorded sound section). 
  •  
    For further details about encoding in AAC and MP4 format refer to the EncodeAAC class section. 
    For further information about available encoding formats see the EncodeFormatsMan class.
     
     
     
     
     
     
     
     
    Copyright © 2006 - 2008 MultiMedia Soft 
    Return to Table of contents