无法在C#中使用Aforge.NET显示网络摄像头

时间:2011-12-05 03:15:28

标签: c# asp.net .net aforge

我目前正在开展一个项目,我只需在其上显示用户网络摄像头 asp.image对象。我正在使用Aforge框架工作,并已在Windows应用程序上工作。在Windows应用程序中,我将视频源变量设置为等于图片框的图像属性 换句话说:

samplepicturebox1.image = videosource

问题是,对于asp,只有一个asp:image对象,唯一的属性是.imageurl

imgSource.imageurl = ???

我如何将视频流对象链接到图像网址或我将用于显示流的其他对象?我已经考虑将输出放在一个单独的aspx.cs文件中,所以我可以将它用作图像但没有运气。
 这是我的代码:

//using AForge.Video;
//using AForge.Video.DirectShow;
//using System.Drawing.Imaging;


public partial class WebForm1 : System.Web.UI.Page
{
    private FilterInfoCollection VideoCaptureDevices;
    private VideoCaptureDevice FinalVideo;
    protected void Page_Load(object sender, EventArgs e)
    {
        drpSource.Items.Clear();
        VideoCaptureDevices = new FilterInfoCollection(FilterCategory.VideoInputDevice);
        foreach (FilterInfo VideoCaptureDevice in VideoCaptureDevices) 
        {
            drpSource.Items.Add(VideoCaptureDevice.Name);
        }
        drpSource.SelectedIndex = 0;
    }

    protected void btnStart_Click(object sender, EventArgs e)
    {
        FinalVideo = new VideoCaptureDevice(VideoCaptureDevices[drpSource.SelectedIndex].MonikerString);
        FinalVideo.NewFrame +=new NewFrameEventHandler(FinalVideo_NewFrame);
        FinalVideo.Start();
    }
    void FinalVideo_NewFrame(object sender, NewFrameEventArgs deventArgs)
    {
        imgSource.ImageUrl=(FinalVideo.ToString());
    }
}

我还使用用户的不同视频源填充了一个组合框。这也正确显示

我非常感谢任何帮助。这将转化为通信。我希望能够像聊天和聊天一样在用户之间进行流式传输。如果有人会推荐一个更好的框架来调查我是开放的,我只是将Aforge和Touchless视为支持视频流的两个C#框架。

我见过很多人使用flash而且我确实知道一些ActionScript,但是说实话,我宁愿不要用flash搞得太多,因为ActionScript很痛苦,而且从某些方面来看,我认为flash慢慢地枯萎和死亡。

1 个答案:

答案 0 :(得分:1)

@KeithNicholas是对的。 Web应用程序与client / winforms应用程序不同。 Web应用程序在Web服务器中运行,而不是在Web浏览器中运行。

无法访问用户的网络摄像头。您需要使用像flash或silverlight这样的客户端技术才能使用服务器上的webcamera。