Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
EncodeFormats.ACM.EncodeMode property 
 
Type
[Visual Basic] 
Public Property EncodeMode As enumAcmEncodeModes
 
[C#] 
public enumAcmEncodeModes EncodeMode {get; set;}
 
[C++] 
public: __property enumAcmEncodeModes get_EncodeMode(); 
public: __property void set_EncodeMode(enumAcmEncodeModes);
 
 
Remarks
The encoding mode used during recording, exporting or CD ripping sessions using a codec of the Windows Audio Compression Manager. 
Supported values are the following: 
Mnemonic Value
Numeric value
Meaning
ACM_ENCODE_USE_CODEC_INDEX
0
Encode using the ACM codec defined inside the EncodeFormats.ACM.CodecIndex property and the related format defined inside the EncodeFormats.ACM.CodecFormatIndex property
ACM_ENCODE_USE_WAV_FORMAT
1
Encode using the ACM codec represented by the WAV format previously set through a call to the EncodeFormats.ACM.SetCodecFormatWavData method
 
 
This property is used only in the following situations: 
  • During a recording session if the EncodeFormats.ForRecording property is set to ENCODING_FORMAT_ACM (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_ACM (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_ACM (for further details see the How to export a recorded sound section). 
  •  
    For further details about using the Windows Audio Compression Manager refer to the EncodeACM class section. 
    For a tutorial about the use of the Windows Audio Compression Manager refer to the How to use the Windows Audio Compression Manager section. 
    For further information about available encoding formats see the EncodeFormatsMan class.
     
     
     
     
     
     
     
     
    Copyright © 2006 - 2008 MultiMedia Soft 
    Return to Table of contents