Property ALSpeexCompressor.TALSpeexCompressor.FramesPerPacket
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 FramesPerPacket : Integer read FFramesPerPacket write SetFramesPerPacket;
C++ Builder:
__property int FramesPerPacket = { read=FFramesPerPacket, write=SetFramesPerPacket };
Summary
Number of frames in each Ogg packet.
Description
Use this property to set the number of frames in each Ogg
packet (this saves space at low bit-rates)
Delphi example:
ALSpeexCompressor1.FramesPerPacket := 2;
C++ Builder example:
ALSpeexCompressor1->FramesPerPacket = 2;
Visual C++(MFC/Win32) example:
ALSpeexCompressor1.FramesPerPacket = 2;
C# example:
speexCompressor1.FramesPerPacket = 2;