adospace / reactorui-maui

MauiReactor is a MVU UI framework built on top of .NET MAUI
MIT License
555 stars 46 forks source link

How to play mp3 sound with MauiReactor? #171

Closed juanyacovino77 closed 8 months ago

juanyacovino77 commented 8 months ago

How can we play a simple mp3 wav - ringtone sound on certain actions at MauiReactor apps?

I have succesfully scaffolded the MediaElement of .NET MAUI and it is barely working but I think I need something simpler than a hole media player

adospace commented 8 months ago

Sorry but how does this question relate to MauiReactor? I don't know what the options are to play sounds with MAUI but whatever should work the same in MauiReactor.

Why is MediaElement barely working?

adospace commented 8 months ago

this can work-> https://www.andreasnesheim.no/playing-audio-in-a-net-maui-app/ ?

private async void OnCounterClicked()
{
    var audioPlayer = AudioManager.Current.CreatePlayer(await FileSystem.OpenAppPackageFileAsync("ukelele.mp3"));

    audioPlayer.Play();
}