Class ALWaveLogger.TALWaveLogger
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
||
(2 intermediate revisions by one user not shown) | |||
Line 28: | Line 28: | ||
=== C# (.NET): === | === C# (.NET): === | ||
<code> | <code> | ||
− | '''public ref class''' | + | '''public ref class''' WaveLogger : [[Class ALCommonLogger.TALCommonLogger|Mitov.AudioLab.CommonLogger]] |
</code> | </code> | ||
== Summary == | == Summary == |
Latest revision as of 00:30, 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.
Package: AudioLabEssentialPkg
Unit: ALWaveLogger
Inherits: TALCommonLogger
Contents |
Syntax
Delphi:
type TALWaveLogger = class( TALCommonLogger )
C++ Builder:
class TALWaveLogger : public TALCommonLogger
Visual C++ (MFC):
class CTALWaveLogger : public CTALCommonLogger
C# (.NET):
public ref class WaveLogger : Mitov.AudioLab.CommonLogger
Summary
Records the audio to Wave file.
Description
This component can be used to store WAVE files to disk.
To store audio to an WAVE file, place the component on a form, set the FileName with the name of the WAVE file to be created, and connect the InputPut pin to the OutputPin of a component generating audio data, such as TALWavePlayer or TALAudioIn.
Diagram:
Properties
Published
- FileName
- Compression - Desired audio compression.
- FileMode - The recording mode.
Public
- CurrentSample - Current number audio samples recorded.
- CurrentTime - Current recorded audio time.
- SamplesCount - Returns the total number of audio samples in the file.
- DurationTime - The total time of the opened file.
Events
- OnError - Occurs on wave logger error.
- OnProgress - Logger progress notification event.
From TALCommonLogger
Properties
Published
- FileName - Name of the file to be Recorded.
Methods
Public
- procedure Close() - Closes the file being recorded, and closes any drivers associated with it.
Pins
- InputPin - The Audio Input Pin of the Logger.