LoginSignup
3
1

More than 3 years have passed since last update.

[WinForms] USBカメラの列挙

Last updated at Posted at 2020-07-14
var searcher = new ManagementObjectSearcher(@"SELECT * FROM Win32_PnPSignedDriver WHERE DeviceID LIKE 'USB%' AND DeviceClass = 'Camera'");

foreach (var device in searcher.Get().Cast<ManagementObject>().OrderBy(n => n["PDO"]))
{
    Debug.WriteLine("-----");
    Debug.WriteLine(device.GetPropertyValue("FriendlyName"));
    Debug.WriteLine(device.GetPropertyValue("DeviceClass"));
    Debug.WriteLine(device.GetPropertyValue("DeviceID"));
    Debug.WriteLine(device.GetPropertyValue("PDO"));
    Debug.WriteLine("-----");
}

※「Video Capture Device ID」(index)は、PDOが小さい順に振られると思っていますが、完全には調べ切れていません...

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1