Directshow 获取 设备信息(麦克风,扬声器,摄像头)

Directshow 获取 设备信息(麦克风,扬声器,摄像头),第1张

通过DirectShow Api获取系统麦克风、扬声器、摄像头信息

#include <windowsh>

#include <vector>

#include <dshowh>

#pragma comment(lib, "Strmiidslib")

#define MAX_FRIENDLY_NAME_LENGTH    128

#define MAX_MONIKER_NAME_LENGTH     256

typedef struct _TDeviceName

{

    WCHAR FriendlyName[MAX_FRIENDLY_NAME_LENGTH];   // 设备友好名

    WCHAR MonikerName[MAX_MONIKER_NAME_LENGTH];     // 设备Moniker名

} TDeviceName;

//WCHAR  转换为 Char

char WCharToChar(WCHAR s)

{

 int w_nlen = WideCharToMultiByte(CP_ACP, 0, s, -1, NULL, 0, NULL, false);

 char ret = new char[w_nlen];

 memset(ret, 0, w_nlen);

 WideCharToMultiByte(CP_ACP, 0, s, -1, ret, w_nlen, NULL, false);

return ret;

}

//REFGUID guidValue : CLSID_AudioInputDeviceCategory(麦克风);  CLSID_AudioRendererCategory(扬声器); //CLSID_VideoInputDeviceCategory(摄像头)

HRESULT GetAudioVideoInputDevices(std::vector<TDeviceName> &vectorDevices, REFGUID guidValue)

{

    TDeviceName name;

    HRESULT hr;

    // 初始化

    vectorDevicesclear();

   // 初始化COM

    hr = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);

    if (FAILED(hr))

    {

        return hr;

    }

// 创建系统设备枚举器实例

    ICreateDevEnum pSysDevEnum = NULL;

    hr = CoCreateInstance(CLSID_SystemDeviceEnum, NULL, CLSCTX_INPROC_SERVER, IID_ICreateDevEnum, (void )&pSysDevEnum);

    if (FAILED(hr))

    {

        CoUninitialize();

        return hr;

    }

    // 获取设备类枚举器

    IEnumMoniker pEnumCat = NULL;

    hr = pSysDevEnum->CreateClassEnumerator(guidValue, &pEnumCat, 0);

    if (hr == S_OK)

    {

        // 枚举设备名称

        IMoniker pMoniker = NULL;

        ULONG cFetched;

        while (pEnumCat->Next(1, &pMoniker, &cFetched) == S_OK)

        {

            IPropertyBag pPropBag;

            hr = pMoniker->BindToStorage(NULL, NULL, IID_IPropertyBag, (void )&pPropBag);

            if (SUCCEEDED(hr))

            {

                // 获取设备友好名

                VARIANT varName;

                VariantInit(&varName);

                hr = pPropBag->Read(L"FriendlyName", &varName, NULL);

                if (SUCCEEDED(hr))

                {

                    StringCchCopy(nameFriendlyName, MAX_FRIENDLY_NAME_LENGTH, varNamebstrVal);

                    // 获取设备Moniker名

                    LPOLESTR pOleDisplayName = reinterpret_cast<LPOLESTR>(CoTaskMemAlloc(MAX_MONIKER_NAME_LENGTH 2));

                    if (pOleDisplayName != NULL)

                    {

                        hr = pMoniker->GetDisplayName(NULL, NULL, &pOleDisplayName);

                        if (SUCCEEDED(hr))

                        {

                            StringCchCopy(nameMonikerName, MAX_MONIKER_NAME_LENGTH, pOleDisplayName);

                            vectorDevicespush_back(name);

                        }

                          CoTaskMemFree(pOleDisplayName);

                    }

                }

                VariantClear(&varName);

                pPropBag->Release();

            }

            pMoniker->Release();

        } // End for While

        pEnumCat->Release();

    }

    pSysDevEnum->Release();

    CoUninitialize();

    return hr;

}

int _tmain(int argc, _TCHAR argv[])

{

    std::vector<TDeviceName> vectorDevices;

    vectorDevicesclear();

//获取摄像头信息

    GetAudioVideoInputDevices(vectorDevices, CLSID_VideoInputDeviceCategory);

    for (auto itor = vectorDevicesbegin(); itor != vectorDevicesend(); ++itor)

    {

        printf("FriendlyName = %s, MonikerName = %s\n", WCharToChar(itor->FriendlyName), WCharToChar(itor->MonikerName));

    }

    vectorDevicesclear();

//获取麦克风设备信息

    GetAudioVideoInputDevices(vectorDevices, CLSID_AudioInputDeviceCategory);

    for (auto itor = vectorDevicesbegin(); itor != vectorDevicesend(); ++itor)

    {

        //wprintf(L"FriendlyName = %ws, MonikerName = %ws\n", itor->FriendlyName, itor->MonikerName);

        printf("FriendlyName = %s, MonikerName = %s\n", WCharToChar(itor->FriendlyName), WCharToChar(itor->MonikerName));

    }

    vectorDevicesclear();

//获取扬声器设备信息

    GetAudioVideoInputDevices(vectorDevices, CLSID_AudioRendererCategory);

    for (auto itor = vectorDevicesbegin(); itor != vectorDevicesend(); ++itor)

    {

        //wprintf(L"FriendlyName = %ws, MonikerName = %ws\n", itor->FriendlyName, itor->MonikerName);

        printf("FriendlyName = %s, MonikerName = %s\n", WCharToChar(itor->FriendlyName), WCharToChar(itor->MonikerName));

    }

    getchar();

    return 0;

}

开启了超强模式,并且启用了隐私行为监控。这个功能能有效监控应用程序的权限(比如读取短信记录、获取地理位置信息)。获取设备信息(就是你的手机序列号,即IMEI码)是一个十分普通的权限,几乎所有的应用程序都会有这个权限需求,一般没有什么隐私性,故允许即可。

允许。

华为手机允许设备连接服务联网以获取附近设备信息,这个功能可以有效监控应用程序的权限(比如读取短信记录、获取地理位置信息)。获取设备信息(就是你的手机序列号,即IMEI码)是一个十分普通的权限,几乎所有的应用程序都会有这个权限需求,一般没有什么隐私性。

设备信息主要是指消费者所使用的各种计算机终端设备(包括移动和固定终端)的基本信息。

以上就是关于Directshow 获取 设备信息(麦克风,扬声器,摄像头)全部的内容,包括:Directshow 获取 设备信息(麦克风,扬声器,摄像头)、华为手机是否允许设备连接服务联网以获取附近设备、华为手机是否允许设备连接服务联网以获取附近设备信息等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9339384.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-27
下一篇 2023-04-27

发表评论

登录后才能评论

评论列表(0条)

保存