WAVFileRecorder

Top  Previous  Next

Helper (T)WAVFileRecorder class.

 

This class is useful for call recording.

 

procedure Open(FileName: String); - Delphi syntax

void Open(string filename); - C# syntax

 

Creates new PCM .WAV file for writing.

 

procedure Close; - Delphi syntax

void Close(); - C# syntax

 

Closes the .WAV file.

 

procedure Write(var Buffer; Bytes: Cardinal); - Delphi syntax

void Write(byte[] buffer);

 

Appends the buffer of bytes to WAV file.