Questions tagged [hikvision]
73 questions
6
votes
0 answers
Reverse engineering Hikvision camera firmware and LiteOS bootloader
I have a Hikvision IP camera that I'm doing security research on. (Model DFI6257E, looks like a Taiwan exclusive model. )
After dumping firmware from its flash and analyze it with binwalk, I found it intriguingly difficult to understand how its…

Jimmy.D
- 81
- 1
- 7
3
votes
1 answer
Connecting to Hikvision Camera using python and open cv
i want to Connect Hikvision ip camera with python and open cv using this code :
import numpy as np
import cv2
cap = cv2.VideoCapture()
cap.open("rtsp://yourusername:yourpassword@172.16.30.248:555/Streaming/channels/2/")
while(True):
# Capture…

miss nefrat
- 93
- 1
- 1
- 9
2
votes
3 answers
How to get Hikvision DeepinViews license plate number from URL?
I cant find the solution anywhere and mine doesn't seem to work.
I just want to see the last plate string in the browser,or the few last plates,doesn't…

Master
- 135
- 1
- 11
2
votes
0 answers
How to generate QR to use with Hikvision Camera
I am creating a simple Java client for the HIKVISION cameras. (Primarily for Linux).
I want to add a feature to let the user generate a QR code base of the camera list (This feature is already exist in Hikevision apps Windows and android).
I read…

JaVaBoy
- 419
- 1
- 4
- 9
2
votes
1 answer
http request with user and password in URL fails when request is made in php code, but works in any browser
When accessing this URL in my PC browser, I see a screenshot from a stream recorded by my HikVision NVR
http://admin:441e3!@192.168.1.90/ISAPI/Streaming/channels/201/picture?videoResolutionWidth=1920&videoResolutionHeight=1080
but when I try to…

ovisopa
- 113
- 1
- 8
2
votes
0 answers
Setup WiFi via ONVIF
I'm working with Hikvision DS-2CD2443G0-IW. And can't understand if it possible to setup WiFi via ONVIF. I'm little confused with non-consistent output
GetDot11Capabilities returns next:
…

Ilya Vasiuk
- 49
- 1
- 4
2
votes
1 answer
Getting error 113 in Hikvision camera integration
I am using Device Hikvision sdk for NVR , some command of API(NET_DVR_GetDVRConfig) is working but some command are showing error 113 ( Failed to load the HCGeneralCfgMgr COM ).I used this command(NET_DVR_GET_IPPARACFG_V40) but I am getting error…

wurood_jeb
- 21
- 1
2
votes
1 answer
Get plates from Hikvision LPR camera (returning only the last 20 plates) How to retrieve more?
I want to retrieving plates from LPR Hikvision camera but xml file returns only last 20 plates. Someone can help me to define correctly xml parameters to retrieve more registries?
POST URL: .../ISAPI/Traffic/channels/1/vehicleDetect/plates
POST…

PP.TT
- 31
- 3
2
votes
1 answer
How to use Hikvision IP camera for image processing using Python?
I am using HIKVISION IP camera (DS-2CD204WFWD-I) & (DS-2CD214WFWD-I) with NVR for image processing (face recognition) using OpenCV and python.
currently, in-camera setting, I have selected 20fps whereas when I run my code I am getting frames at very…

Akash Dixit
- 97
- 3
- 11
1
vote
1 answer
FastAPI: form-data name with a dot
I have documentation. Form-data names have dots.
This code doesn't work:
from fastapi import FastAPI, File, UploadFile
app = FastAPI()
@app.post('/test')
async def test(anpr: UploadFile = File(...),
licensePlatePicture:…

Alexey Golyshev
- 792
- 6
- 11
1
vote
1 answer
ANPR events with picture Hikvision Node
I have subscrived to the events of a Hikvision camera doing a get request to /ISAPI/Event/notification/alertStream. I am interested in ANPR events, this type of events return a multipart response which includes an xml with the event info, a license…

Cristina de la Torre
- 11
- 2
1
vote
3 answers
Wiegand card numbers are seen different on Hikvision and ZKteco
I have a problem with two access control panels, one is Hikvision and the other one is a ZKTeco CCA-400, those two panels see the Wiegand card in a different way, this is a big problem because I cannot import cards from ZKteco to Hikvision or the…

Mihail
- 81
- 1
- 8
1
vote
0 answers
Onvif Relative Move Request Failed
We are using Onvif PTZ commands from a long time for Hikvision IP cameras. Now, we just updated our Elixir codebase to make it work for the Hikvision camera and NVR. Onvif requests work to get/set/delete presets but not works for relative move and…

azharmalik3
- 553
- 8
- 21
1
vote
0 answers
SRT : No Room to Store Incoming Packets when we stream SRT streams through VLC
Hope all you are doing well.
Actually i was trying to stream a media file using VLC by SRT protocol. For which, srt-live-transmit is used as converter in between SRT Listener and VLC UDP streams. srt-live-transmit used to convert udp to srt…

Shankar
- 15
- 4
1
vote
1 answer
C# marshaling C++ functions
I am trying to use the Hikvision SDK https://www.hikvision.com/en/support/download/sdk/
My current goal is to open the door (trigger an output) with the intercom outdoor station.
I managed to do the login (NET_DVR_LoginV40) and display the outdoor…

Atlasy
- 57
- 4