Small C# library to access Dahua DVRs, it also works with Intelbras DVRs. Currently, it's only possible to get the channels names and make a JPG snapshot of the recording.
Biblioteca em C# para acessar DVRs da Dahua, que são vendidos no Brasil como Intelbras. Atualmente, só é possível pegar os nomes dos canais e fazer uma captura em JPG da gravação.
Quick Example:
var c = new DvrClient("192.168.13.37");
c.Connect();
c.Login("admin", "admin");
String[] channels = c.GetChannelsTitles();
byte[] b = c.GetSnapshot(0);
Inspired by TaniDvr (http://tanidvr.sourceforge.net)