如何检测捕获设备的设备名称?
我正在编写一个 GStreamer 应用程序(GStreamer 在 Windows 上使用 DirectShow)来捕获计算机的麦克风和摄像机。它工作正常,但需要我手动指定设备名称。我想让我的程序自动检测这些。有谁知道该怎么做?
I am writing a GStreamer application (GStreamer uses DirectShow under the hood on Windows) that captures a computer's microphone and videocamera. It works fine, but requires me to specify the device names manually. I would like to have my program detect these automatically. Does anyone know how to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果 GStreamer 没有枚举设备的功能,我会感到惊讶,但 DirectShow 肯定有。
请参阅有关使用系统设备枚举器 并将其与正确的过滤器类别 - 在您的情况下
CLSID_AudioInputDeviceCategory
和CLSID_VideoInputDeviceCategory
。It would surprise me if GStreamer doesn't have capabilities to enumerate devices, but DirectShow definitely has.
See the article on using the system device enumerator and use it with the correct filter categories - in your case
CLSID_AudioInputDeviceCategory
andCLSID_VideoInputDeviceCategory
.您应该使用 GStreamer 的探测接口,它允许您列出给定属性的所有可能值,在您的例子中为“设备名称”。
这是一个例子:
You should use GStreamer's probing interface which allows you to list all possible values for a given property, in your case 'device-name'.
Here is an example: