Hello,
For playing media files, MAUI provides an official solution.
You could refer to MediaElement, and the following code sample:
After installing CommunityToolkit.Maui
and CommunityToolkit.Maui.MediaElement
, you could use the following code to play myaudio.mp3:
builder
.UseMauiApp<App>()
.UseMauiCommunityToolkit()
.UseMauiCommunityToolkitMediaElement()
<toolkit:MediaElement Source="embed://myaudio.mp3" ShouldAutoPlay="True"/>
Best Regards,
Alec Liu.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.