unosquare / ffmediaelement

FFME: The Advanced WPF MediaElement (based on FFmpeg)
https://unosquare.github.io/ffmediaelement/
Other
1.17k stars 240 forks source link

Closing the window after a close MediaElement #673

Open vzsoft opened 2 weeks ago

vzsoft commented 2 weeks ago

Issue

Closing the window after 45 seconds after executing this code

code in WPF:

        private async void Button_Click(object sender, RoutedEventArgs e)
        {

            var medi = new Unosquare.FFME.MediaElement();
            var dfgdfg = await medi.Open(new Uri(@"F:\Temp\1.mp4"));
            medi.IsMuted = true;
            await medi.Play();
            await medi.Close();
        }

Issue Categories

Version Information

NuGet Package 7.0.361-beta.1 WPF NET 8

vzsoft commented 2 weeks ago

sample file WpfApp6.zip