Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
EncodeFormats.OGG.EncodeMode property 
 
Type
[Visual Basic] 
Public Property EncodeMode As enumOggEncodeModes
 
[C#] 
public enumOggEncodeModes EncodeMode {get; set;}
 
[C++] 
public: __property enumOggEncodeModes get_EncodeMode(); 
public: __property void set_EncodeMode(enumOggEncodeModes);
 
 
Remarks
The encoding mode used for OGG Vorbis format during recording or CD ripping sessions. 
 
Supported values are the following: 
Mnemonic Value
Numeric value
Meaning
OGG_ENCODE_QUALITY
0
Encode with the OggEnc encoder using the quality specified inside the EncodeFormats.OGG.Quality property.
OGG_ENCODE_BITRATE
1
Encode with the OggEnc encoder using the Constant Bitrate (CBR) specified inside the EncodeFormats.OGG.Bitrate property.
OGG_ENCODE_CUSTOM
2
Encode with the OggEnc encoder using the custom string defined inside the EncodeFormats.OGG.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_OGG (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_OGG (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_OGG (for further details see the How to export a recorded sound section). 
  •  
    For further details about encoding in OGG Vorbis format refer to the EncodeOGG class section. 
    For further information about available encoding formats see the EncodeFormatsMan class.
     
     
     
     
     
     
     
     
    Copyright © 2006 - 2008 MultiMedia Soft 
    Return to Table of contents