Alvas.Audio Class Library

Recorder Class

Recorder is a component for sound recording in pulse code modulation (PCM) wave file format.

For a list of all members of this type, see Recorder Members.

System.Object
   System.MarshalByRefObject
      System.ComponentModel.Component
         Alvas.Audio.Recorder

[Visual Basic]
Public Class Recorder
    Inherits Component
[C#]
public class Recorder : Component

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Example

This example shows how simple use Recorder.

rec.Open();
Recorder.Channel rc = Recorder.Channel.Stereo;
Recorder.BitsPerSample rbps = Recorder.BitsPerSample.Bps16;
Recorder.SamplesPerSec rsps = Recorder.SamplesPerSec.Sps8000;
rec.Configure(rc, rbps, rsps);
rec.Record();
 

Requirements

Namespace: Alvas.Audio

Assembly: Alvas.Audio (in Alvas.Audio.dll)

See Also

Recorder Members | Alvas.Audio Namespace