C# Class ManagedBass.Record

Capture audio from Microphone.
Inheritance: IAudioRecorder
Afficher le fichier Open project: ManagedBass/ManagedBass

Méthodes publiques

Méthode Description
Dispose ( ) : void

Frees all resources used by this instance.

Record ( ) : System

Creates a new instance of Record with the Default Format and Device.

Record ( RecordDevice Device ) : System

Creates a new instance of Record with the Default Format.

Record ( RecordDevice Device, int Frequency, int Channels, Resolution Resolution = Resolution.Short ) : System

Creates a new instance of Record.

Start ( ) : bool

Start Audio Capture.

Stop ( ) : bool

Stop Audio Capture.

Private Methods

Méthode Description
Processing ( int HRecord, IntPtr Buffer, int Length, IntPtr User ) : bool

Method Details

Dispose() public méthode

Frees all resources used by this instance.
public Dispose ( ) : void
Résultat void

Record() public méthode

Creates a new instance of Record with the Default Format and Device.
public Record ( ) : System
Résultat System

Record() public méthode

Creates a new instance of Record with the Default Format.
public Record ( RecordDevice Device ) : System
Device RecordDevice The to use.
Résultat System

Record() public méthode

Creates a new instance of Record.
public Record ( RecordDevice Device, int Frequency, int Channels, Resolution Resolution = Resolution.Short ) : System
Device RecordDevice
Frequency int
Channels int
Resolution Resolution
Résultat System

Start() public méthode

Start Audio Capture.
public Start ( ) : bool
Résultat bool

Stop() public méthode

Stop Audio Capture.
public Stop ( ) : bool
Résultat bool