如何在C#中创建一个可以访问本地网络摄像头并用声音录制视频的表单应用程序?
我在Google上搜索过,我已经尝试过Direct Show和A-frog库。
答案 0 :(得分:0)
尝试OpenCV库。它包含内置函数,可从本地网络摄像头获取输入。
答案 1 :(得分:0)
我尝试了一个示例项目DirectX Audio & Video rec in one file。它对我来说很好。
在上面引用的代码中使用CaptureTest表单。
您需要更改以下代码才能调用CaptureTest。
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
AppDomain currentDomain = AppDomain.CurrentDomain;
//Application.Run(new CaptureTest());
Application.Run(new QuickTest());
}
提及