MediaElement查询

时间:2011-10-29 13:10:22

标签: c# wpf mediaelement

在我的应用程序中,我从数据库中获取视频文件作为byte [],我的要求是使用WPF媒体元素播放该视频文件。 只想知道最好和最优雅的方法是什么。

1 个答案:

答案 0 :(得分:0)

您可以使用此功能使用媒体元素播放wpf中的视频...

得到了最好的结果,我已经使用了这个......

请点击此链接了解更多信息how to play video in wpf uisng media element

 /// <summary>
/// Handles Drop Event for Media Items.
/// </summary>
private void Media_Drop(object sender, DragEventArgs e)
{
    string[] fileNames = e.Data.GetData(DataFormats.FileDrop, true) 
        as string[];
    //keep a dictionary of added files
    foreach (string f in fileNames)
    {
        if (IsValidMediaItem(f))
            mediaItems.Add(f.Substring(f.LastIndexOf(@"\")+1),
    new MediaItem(@f,0));
    }

    //now add to the list
    foreach (MediaItem mi in mediaItems.Values)
        lstMediaItems.Items.Add(mi);

    // Mark the event as handled,
    // so the control's native Drop handler is not called.
    e.Handled = true;
}

/// <summary>
/// check to see if dragged items are valid
/// </summary>
/// <returns>true if filename is valid</returns>
private bool IsValidMediaItem(string filename)
{
    bool isValid = false;
    string fileExtesion = filename.Substring(filename.LastIndexOf("."));
    foreach (string s in MediaItem.allowableMediaTypes)
    {
        if (s.Equals(fileExtesion, 
    StringComparison.CurrentCultureIgnoreCase))
            isValid = true;
    }
    return isValid;
}

我希望它会帮助你...