Class AudioCapture
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.AudioIO.dll
- API Level:
- 3
- Privilege Level:
- public
- Privilege:
- http://tizen.org/privilege/recorder
- Feature:
- http://tizen.org/feature/microphone
Provides the ability to record audio from system audio input devices in a synchronous way.
C#Copypublic class AudioCapture : AudioCaptureBase, IDisposable
- Inheritance
- Implements
-
System.IDisposable
Constructors
View Source
AudioCapture(Int32, AudioChannel, AudioSampleType)
Initializes a new instance of the AudioCapture class with the specified sample rate, channel, and sampleType.
Declaration
C#Copypublic AudioCapture(int sampleRate, AudioChannel channel, AudioSampleType sampleType)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | sampleRate | The audio sample rate (8000 ~ 192000Hz). |
AudioChannel | channel | The audio channel type. |
AudioSampleType | sampleType | The audio sample type. |
Exceptions
Type | Condition |
---|---|
System.ArgumentOutOfRangeException |
|
System.ArgumentException |
|
UnauthorizedAccessException | The required privilege is not specified. |
System.NotSupportedException | The system does not support microphone. |
API Level: 3
Methods
Declaration
C#Copypublic byte[] Read(int count)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | count | The number of bytes to be read. |
Returns
Type | Description |
---|---|
System.Byte[] | The buffer of audio data captured. |
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | The current state is not Running. |
System.ArgumentOutOfRangeException |
|
ObjectDisposedException | The AudioCapture has already been disposed of. |
API Level: 3
Implements
System.IDisposable