MediaElement -从流中设置源

本文关键字:设置 MediaElement | 更新日期: 2023-09-27 18:18:11

我正在开发WPF应用程序,该应用程序将一些声音文件存储为数据库中的字节数组。我想通过MediaElement控件播放这些文件。MediaElement有Source属性,但是它的类型是Uri。有人知道是否有可能将字节数组转换为Uri吗?

谢谢

MediaElement -从流中设置源

这是一个使用自托管媒体服务器的解决方案

让我们开始

MainWindow.xaml

<MediaElement x:Name="media" />

MainWindow.cs

public MainWindow()
{
    InitializeComponent();
    //host a media server on some port
    MediaServer ws = new MediaServer(RenderVideo, "http://localhost:8080/");
    ws.Run();
    //set the media server's url as the source of media element
    media.Source = new Uri("http://localhost:8080/");
}
private byte[] RenderVideo(HttpListenerRequest r)
{
    //get the video bytes from the server etc. and return the same
    return File.ReadAllBytes("e:''vids''Wildlife.wmv");
}

MediaServer类

class MediaServer
{
    private readonly HttpListener _listener = new HttpListener();
    private readonly Func<HttpListenerRequest, byte[]> _responderMethod;
    public MediaServer(Func<HttpListenerRequest, byte[]> method, string prefix)
    {
        if (!HttpListener.IsSupported)
            throw new NotSupportedException(
                "Needs Windows XP SP2, Server 2003 or later.");
        if (prefix == null)
            throw new ArgumentException("prefix");

        if (method == null)
            throw new ArgumentException("method");
        _listener.Prefixes.Add(prefix);
        _responderMethod = method;
        _listener.Start();
    }

    public void Run()
    {
        ThreadPool.QueueUserWorkItem((o) =>
        {
            try
            {
                while (_listener.IsListening)
                {
                    ThreadPool.QueueUserWorkItem((c) =>
                    {
                        var ctx = c as HttpListenerContext;
                        try
                        {
                            byte[] buf = _responderMethod(ctx.Request);
                            ctx.Response.ContentLength64 = buf.Length;
                            ctx.Response.ContentType = "application/octet-stream";
                            ctx.Response.OutputStream.Write(buf, 0, buf.Length);
                        }
                        catch { }
                        finally
                        {
                            ctx.Response.OutputStream.Close();
                        }
                    }, _listener.GetContext());
                }
            }
            catch { }
        });
    }
    public void Stop()
    {
        _listener.Stop();
        _listener.Close();
    }
}

试一试,我成功地播放了视频,我希望你也一样。

对于MediaServer,我使用了简单的c# Web Server,并进行了一些修改。

上面的

可以使用响应式扩展来缩短。如果对你合适,我也试一试。

我们也可以让媒体服务器在url中传递视频的id,作为回报,它将从DB流回所需的视频