Skip to content

sebastienwarin/kongtopdvr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HTTP Web Server & Windows Control for Kongtop DVR

In 2013, I bought a Kongtop 4CH Full D1 H.264 Network CCTV Camera DVR Digital Video Recorder (model KT79104AD) connected to 4 analog cameras.

To integrate the video cameras on a Web Page like my home automation dashboard I need to capture and expose on HTTP each channels.

After an exchange by email with the Kingtop support, I receive the Kongtop SDK. So I have created a .NET Winform control in C++/CLI to inject the video stream into a Windows UserControl.

So it's very easy to include the video channel on a Winform application :

var cam1 = new WinformDVRControlControl()
{
    Host = "192.168.0.123"
    Port = 40001,
    Username = "admin",
    Password = "00000000",
    Channel = 1,
    Width = 640,
    Height = 480)
};
cam1.Connect();
cam1.PlayStream();
this.Controls.Add(cam1);

Then to expose camera streams on HTTP, the Winform application capture the screen and expose it by using an OWIN server.

For example :

Now it's very easy to play with your cameras connected on your Kongtop DVR !

About

HTTP Web Server & Windows Control for Kongtop DVR

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published