I am trying to configure Audio Loss Detection via the C# SDK (CHCNetSDK.cs) and I'm struggling to find any documentation on this. I can connect to the device and login and the next step is to get the existing Audio Exception Detection config from the device
I'm pretty sure I need to use CHCNetSDK.NET_VCA_AUDIO_ABNORMAL
This is what I have so far
public static CHCNetSDK.NET_VCA_AUDIO_ABNORMAL? GetDevice_AudioDetectConfig(int userID, uint channel)
{
NET_VCA_AUDIO_ABNORMAL result = new NET_VCA_AUDIO_ABNORMAL();
int nSize = Marshal.SizeOf(result);
//result.dwSize = (uint)nSize;
IntPtr ptrConfig = Marshal.AllocHGlobal(nSize);
Marshal.StructureToPtr(result, ptrConfig, false);
UInt32 dwReturn = 0;
if (CHCNetSDK.NET_DVR_GetDVRConfig(userID, CHCNetSDK.NET_DVR_GET_PICCFG_V30, (int)channel, ptrConfig, (uint)nSize, ref dwReturn))
{
result = (CHCNetSDK.NET_VCA_AUDIO_ABNORMAL)Marshal.PtrToStructure(ptrConfig, typeof(CHCNetSDK.NET_VCA_AUDIO_ABNORMAL));
Marshal.FreeHGlobal(ptrConfig);
return result;
}
else
{
Marshal.FreeHGlobal(ptrConfig);
return null;
}
}
I believe that this line is wrong and NET_DVR_GetDVRConfig is the wrong method to call
CHCNetSDK.NET_DVR_GetDVRConfig(userID, CHCNetSDK.NET_DVR_GET_PICCFG_V30, (int)channel, ptrConfig, (uint)nSize, ref dwReturn)
If anyone can point me in the right direction I would appreciate it.
Firstly download the latest SDK from https://www.hikvision.com/en/support/download/sdk/
This is the code I needed to interact with the
HCNetSDK.dll
to enable Audio DetectionThis goes in the
CHCNetSDK.cs
file