Property ALVorbisCompressor.TALVorbisCompressor.Quality
From Mitov Wiki Doc
(Difference between revisions)
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
(5 intermediate revisions by one user not shown) | |||
Line 10: | Line 10: | ||
=== Delphi: === | === Delphi: === | ||
<code> | <code> | ||
− | '''property''' Quality : Real '''read''' FQuality '''write''' SetQuality; | + | '''property''' Quality : Real '''read''' FQuality '''write''' SetQuality '''default''' 0.1; |
</code> | </code> | ||
=== C++ Builder: === | === C++ Builder: === | ||
<code> | <code> | ||
− | '''__property''' double Quality = { '''read'''=FQuality, '''write'''=SetQuality }; | + | '''__property''' double Quality = { '''read'''=FQuality, '''write'''=SetQuality, '''default'''=0.1 }; |
</code> | </code> | ||
Latest revision as of 00:11, 26 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TALVorbisCompressor
Contents |
Syntax
Delphi:
property Quality : Real read FQuality write SetQuality default 0.1;
C++ Builder:
__property double Quality = { read=FQuality, write=SetQuality, default=0.1 };
Summary
Vorbis quality level.
Description
Use this property to specify the desired Vorbis quality
level, currently from -0.1 to 1.0 (lo to hi).
Delphi example:
ALVorbisCompressor1.Quality := 1;
C++ Builder example:
ALVorbisCompressor1->Quality = 1;
Visual C++(MFC/Win32) example:
ALVorbisCompressor1.Quality = 1;
C# example:
vorbisCompressor1.Quality = 1;