I tried using a MediaElement within my XAML page in UWP project.
Adding MediaElement
was straightforward but after when loading a video file the video is shown fine, but audio is not played at all.
<MediaElement x:Name=”MediaElement1″ Source=”http://localhost/media/video-audio.mp3” AutoPlay=”True” />
I tried using some Apps/samples for UWP Apps I could find on the internet but didn’t work as well. So I guess it’s an issue related to my local machine or configuration rather than a Coding issue.
Any hints!