Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vh13294/hikvision-dotnet-sdk
https://github.com/vh13294/hikvision-dotnet-sdk
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vh13294/hikvision-dotnet-sdk
- Owner: vh13294
- Created: 2023-01-03T02:37:52.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-23T13:41:31.000Z (over 1 year ago)
- Last Synced: 2024-10-12T09:29:40.824Z (3 months ago)
- Language: C#
- Size: 77.7 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# HikVision DVR & NVR Live-Viewer .Net 4.8 / C#
## This project only support release build x64
## Extension of HikVision Windows SDK
https://www.hikvision.com/en/support/download/sdk/### Application
- bin/PreviewDemo.exe### Require Config in json format
- bin/DeviceConfig.json```javascript
// DeviceConfig.json
{
"displayScreen": 0,
"numberOfScreen": 3,
"Devices": [
{
"ip": "192.168.1.1",
"username": "admin",
"password": "admin",
"port": 8000,
"streamType": 0,
"channels": [1, 2, 7, 33]
},
{
"ip": "192.168.1.2",
"username": "admin",
"password": "admin",
"port": 8050,
"streamType": 0,
"channels": [1, 2, 4]
},
{
"ip": "192.168.1.3",
"username": "admin",
"password": "admin",
"port": 8000,
"streamType": 1,
"channels": [1, 3]
}
]
}// displayScreen: support for multiple monitors, select the N monitor to display
// numberOfScreen: the number of video frames per monitor
// 1 => 1
// 2 => 2x2 total 4 videos live-view
// 3 => 3x3 total 9 videos live-view
// 4 => 4x4 total 16 videos live-view// streamType
// 0 => main stream
// 1 => sub stream```
## Note
- Please do not rename the bin directory## Full screen windows application (PreviewDemo.exe)
![screenshot](./screenshot.png)### startup.bat
- Batch file for windows startup application```bat
cd "C:\bin\"
start "" PreviewDemo.exe
```