我目前正在做一个项目,我需要在 asp.image 对象上简单地显示用户网络摄像头。我正在使用 Aforge 框架,并已将其用于 Windows 应用程序。在 windows 应用程序中,我将视频源变量设置为图片框的图像属性,
换句话说:
samplepicturebox1.image = videosource
问题是,对于 asp,只有一个 asp:image 对象,唯一的属性是 .imageurl
imgSource.imageurl = ???
我将如何继续并将视频流对象链接到图像 url 或我将使用什么其他对象来显示流?我已经考虑将输出放在单独的 aspx.cs 文件中,这样我就可以将其用作 imageurl 但没有运气。
这是我要指定的代码:
//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());
}
}
我还用用户的不同视频源填充了一个组合框。这也正确显示
我真的很感激任何帮助。这将转化为沟通。我希望能够像 Omegle 和 Chatroulette 一样在用户之间进行流式传输。如果有人会推荐一个更好的框架来研究我是开放的,我只研究了 Aforge 和 Touchless 作为两个支持视频流的 C# 框架。
我见过很多人使用 flash 并且我确实知道一点 ActionScript,但老实说,我宁愿不要过多地使用 flash,因为 ActionScript 是相当痛苦的,从我的观点来看,在某些方面,flash 会慢慢枯萎和死。