gpt4 book ai didi

c# - 如何在 UWP 中显示 MJPEG 流

转载 作者:太空宇宙 更新时间:2023-11-03 12:45:48 28 4
gpt4 key购买 nike

我有一个基于 HTTP 的 MJPEG 格式的视频流。

我尝试使用 MjpegProcessor 使用 https://channel9.msdn.com/coding4fun/articles/MJPEG-Decoder关联。

根据提供的说明,我在我的项目中引用了 MjpegProcessor.winmd dll。但似乎 FrameReady 事件没有 Bitmap/BitmapImage 成员。我做错了什么?他们是否有任何其他方式在 UWP 中流式传输 MJPEG?

最佳答案

是的,UWP 中的 FrameReadyEventArgs 中没有 Bitmap/BitmapImage。在 UWP 应用程序中,我们应该像下面这样使用 FrameBuffer 属性:

private async void mjpeg_FrameReady(object sender, FrameReadyEventArgs e)
{
    using (InMemoryRandomAccessStream ms = new InMemoryRandomAccessStream())
    {
        await ms.WriteAsync(e.FrameBuffer);
        ms.Seek(0);

        var bmp = new BitmapImage();
        await bmp.SetSourceAsync(ms);

        //image is the Image control in XAML
        image.Source = bmp;
    }
}

关于c# - 如何在 UWP 中显示 MJPEG 流,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37382279/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com