Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

Latest commit

 

History

History
20 lines (16 loc) · 632 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 632 Bytes

DahuaSharp

[EN]

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.

[PT-BR]

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)