Class AudioEffect
Definition
- Namespace:
- Tizen.Multimedia
- Assembly:
- Tizen.Multimedia.MediaPlayer.dll
- API Level:
- 3
Provides the ability to control the audio effects for Player.
public class AudioEffect
- Inheritance
-
AudioEffect
Properties
View SourceBandLevelRange
Gets the range of band level in dB.
Declaration
public 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
API Level: 3
View SourceCount
Gets the number of items.
Declaration
public int Count { get; }
Property Value
Type | Description |
---|---|
Int32 |
Exceptions
Type | Condition |
---|---|
NotAvailableException | If audio offload is enabled by calling IsEnabled. (Since tizen 6.0)
-or- |
See Also
API Level: 3
View SourceIsAvailable
Gets the value whether the AudioEffect is available or not.
Declaration
public bool IsAvailable { get; }
Property Value
Type | Description |
---|---|
Boolean |
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) |
See Also
API Level: 3
View SourceItem[Int32]
Gets a EqualizerBand at the specified index.
Declaration
public EqualizerBand this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | The index of the band to get. |
Property Value
Type | Description |
---|---|
EqualizerBand |
Exceptions
Type | Condition |
---|---|
ObjectDisposedException | The Player has already been disposed of. |
ArgumentOutOfRangeException |
|
NotAvailableException | If audio offload is enabled by calling IsEnabled. (Since tizen 6.0) |
API Level: 3
View SourcePlayer
Gets the player that this AudioEffect belongs to.
Declaration
public Player Player { get; }
Property Value
Type | Description |
---|---|
Player |
API Level: 3
Methods
View SourceClear()
Clears the equalizer effect.
Declaration
public void Clear()
Exceptions
Type | Condition |
---|---|
ObjectDisposedException | The Player has already been disposed of. |
NotAvailableException | If audio offload is enabled by calling IsEnabled. (Since tizen 6.0)
-or- |