Property ALSpeexCompressor.TALSpeexCompressor.BandMode
From Mitov Wiki Doc
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: TALSpeexCompressor
Contents |
Syntax
Delphi:
property BandMode : TALSpeexBandMode read FBandMode write SetBandMode;
C++ Builder:
__property TALSpeexBandMode BandMode = { read=FBandMode, write=SetBandMode };
Summary
The Speex Band encode mode.
Description
Use this property to specify the Speex Band encode mode.
Delphi example:
ALSpeexCompressor1.BandMode := alSpeexWideband;
C++ Builder example:
ALSpeexCompressor1->BandMode = alSpeexWideband;
Visual C++(MFC/Win32) example:
ALSpeexCompressor1.BandMode = alSpeexWideband;
C# Example:
speexCompressor1.BandMode = Mitov.AudioLab.SpeexBandMode.SpeexWideband;