Audio description - .NET MAUI
In MAUI, you can use MediaElement
to embed videos. Unfortunately, there is no built-in support to switch to an audio description track. In this case, a custom control will be required to support it. You can consider the following options:
- Use a
Custom Handler
to create a control from scratch. - Use
Platform Behavior
to extend theMediaElement
component. - Create a native binding to expose any native third-party library that supports this feature via Native Library Interop for .NET MAUI.
Not available, contribute!