Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
EncodeFormats.RAW.EncodeMode property 
 
Type
[Visual Basic] 
Public Property EncodeMode As enumRAWEncodeModes
 
[C#] 
public enumRAWEncodeModes EncodeMode {get; set;}
 
[C++] 
public: __property enumRAWEncodeModes get_EncodeMode(); 
public: __property void set_EncodeMode(enumRAWEncodeModes);
 
 
Remarks
The RAW encoding mode used during recording, exporting or CD ripping sessions. 
Supported values are the following: 
Mnemonic Value
Numeric value
Meaning
RAW_ENCODE_PCM_S8
0
RAW PCM 8 bits Unsigned
RAW_ENCODE_PCM_S8
1
RAW PCM 8 bits Signed
RAW_ENCODE_PCM_S16
2
RAW PCM 16 bits Signed
RAW_ENCODE_PCM_S24
3
RAW PCM 24 bits Signed
RAW_ENCODE_PCM_S32
4
RAW PCM 32 bits Signed
RAW_ENCODE_FLOAT32
5
RAW 32 bits floating point
RAW_ENCODE_G711_ULAW
6
RAW G711 U-LAW
RAW_ENCODE_G711_ALAW
7
RAW G711 A-LAW
RAW_ENCODE_GSM_610
8
RAW GSM 6.10
RAW_ENCODE_DIALOGIC_VOX
9
RAW Dialogic ADPCM VOX
 
This property is used only in the following situations: 
  • During a recording session if the EncodeFormats.ForRecording property is set to ENCODING_FORMAT_RAW (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_RAW (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_RAW (for further details see the How to export a recorded sound section). 
  •  
    For further details about using RAW formats refer to the EncodeRAW class section. 
    For further information about available encoding formats see the EncodeFormatsMan class.
     
     
     
     
     
     
     
     
    Copyright © 2006 - 2008 MultiMedia Soft 
    Return to Table of contents