Class AudioEffect
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
Provides the ability to control the audio effects for Player.
C#Copypublic class AudioEffect
- Inheritance
-
objectAudioEffect
Properties
Declaration
C#Copypublic Range BandLevelRange { get; }
Property Value
| Type | Description |
|---|---|
| Range |
Exceptions
| Type | Condition |
|---|---|
| NotAvailableException | If audio offload is enabled by calling IsEnabled. (Since tizen 6.0)
-or- |
See Also
Declaration
C#Copypublic int Count { get; }
Property Value
| Type | Description |
|---|---|
| int |
Exceptions
| Type | Condition |
|---|---|
| NotAvailableException | If audio offload is enabled by calling IsEnabled. (Since tizen 6.0)
-or- |
See Also
Declaration
C#Copypublic bool IsAvailable { get; }
Property Value
| Type | Description |
|---|---|
| bool |
Remarks
This function returns the availability of the AudioEffect.
It could be unavailable depending on the platform capabilities.
If audio offload is enabled by calling IsEnabled,
the IsAvailable returns false.(Since tizen 6.0)
Exceptions
| Type | Condition |
|---|---|
| NotAvailableException | Depending on the audio codec type, the function is not available. (Since tizen 6.0) |
Declaration
C#Copypublic EqualizerBand this[int index] { get; }
Parameters
| Type | Name | Description |
|---|---|---|
| int | index | The index of the band to get. |
Property Value
| Type | Description |
|---|---|
| EqualizerBand |
Exceptions
| Type | Condition |
|---|---|
| System.ObjectDisposedException | The Player has already been disposed of. |
| System.ArgumentOutOfRangeException |
|
| NotAvailableException | If audio offload is enabled by calling IsEnabled. (Since tizen 6.0) |
Declaration
C#Copypublic Player Player { get; }
Property Value
| Type | Description |
|---|---|
| Player |
Methods
Declaration
C#Copypublic void Clear()
Exceptions
| Type | Condition |
|---|---|
| System.ObjectDisposedException | The Player has already been disposed of. |
| NotAvailableException | If audio offload is enabled by calling IsEnabled. (Since tizen 6.0)
-or- |