如何使用 java 检测笔记本电脑网络摄像头设备

发布于 2024-10-18 16:42:58 字数 73 浏览 3 评论 0原文

我正在使用 JMF 。我无法使用 java 代码检测我的笔记本电脑网络摄像头设备。有人可以帮我做这个吗?

提前致谢。

I am using JMF . I am not able to detect my Laptop Web Camera device using java code . Can anybody help me in doing this ?.

Thanx in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

折戟 2024-10-25 16:42:58

我建议您查看网站。它应该对您有帮助

I recomend to check this site.It should help you

提笔落墨 2024-10-25 16:42:58

虽然没有直接说出来,但是代码和解释都在里面。或者仅使用与 JMF 一起安装的 JMF 注册表。

如何使用 JMF 捕获视频,但无需安装 JMF< /a>

This doesnt directly say it, but the code and explanation is in there. Or just use JMF Registry that gets installed with JMF.

How to capture video using JMF, but without installing JMF

浊酒尽余欢 2024-10-25 16:42:58
public void Capture()
{

    di = CaptureDeviceManager.getDevice("vfw:Microsoft WDM Image Capture (Win32):0");

    ml = new MediaLocator("vfw://0");

    try {
        player=Manager.createRealizedPlayer(ml);
        win.getContentPane().add(player.getVisualComponent(),BorderLayout.CENTER);
        player.start();

    } catch (Exception ex)
    {

    }
}
public void Capture()
{

    di = CaptureDeviceManager.getDevice("vfw:Microsoft WDM Image Capture (Win32):0");

    ml = new MediaLocator("vfw://0");

    try {
        player=Manager.createRealizedPlayer(ml);
        win.getContentPane().add(player.getVisualComponent(),BorderLayout.CENTER);
        player.start();

    } catch (Exception ex)
    {

    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文