Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 2.15 KB

audiodeviceoutputnode_effectdefinitions.md

File metadata and controls

37 lines (28 loc) · 2.15 KB
-api-id -api-type
P:Windows.Media.Audio.AudioDeviceOutputNode.EffectDefinitions
winrt property

Windows.Media.Audio.AudioDeviceOutputNode.EffectDefinitions

-description

Gets the list of effect definitions for the audio device output node. The effects in the list process audio data that flows through the node in the order in which they appear in the list.

-property-value

The list of effect definitions for the node.

-remarks

To add an audio effect to the node, add an object that implements IAudioEffectDefinition to the EffectDefinitions property. You can disable effects by passing a previously added effect definition to the DisableEffectsByDefinition method. Reenable a disabled effect by passing the definition to EnableEffectsByDefinition.

Several platform-provided effects can be found in the Windows.Media.Audio namespace. These include:

Also, you can create your own custom audio effects by creating a Windows Runtime component that implements the IBasicAudioEffect interface. For a walkthrough of creating a custom audio effect, see Custom audio effects.

-see-also

Custom audio effects IAudioEffectDefinition EchoEffectDefinition EqualizerEffectDefinition LimiterEffectDefinition ReverbEffectDefinition IBasicAudioEffect