Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
EncodeFormats.OGG.Quality property 
 
Type
[Visual Basic] 
Public Property Quality As float
 
[C#] 
public float Quality {get; set;}
 
[C++] 
public: __property float get_Quality(); 
public: __property void set_Quality(float);
 
 
Remarks
Sets encoding quality used for OGG Vorbis format during recording or CD ripping sessions. 
 
Normal quality range is 0 - 10. Quality -1 is also possible, but for most users may not be of acceptable quality. Fractional quality levels such as 2.5 are permitted. 
 
This property is used only in the following situations: 
 
  • During a recording session if the EncodeFormats.ForRecording property is set to ENCODING_FORMAT_OGG and the EncodeFormats.OGG.EncodeMode property is set to OGG_ENCODE_QUALITY (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 and the EncodeFormats.OGG.EncodeMode property is set to OGG_ENCODE_QUALITY (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 and the EncodeFormats.OGG.EncodeMode property is set to OGG_ENCODE_QUALITY (for further details see the How to export a recorded sound section). 
  •  
    This property is the same as entering either the -q <quality> or --quality <quality> setting inside the Appendix B - OggEnc command line
     
    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