Search results

  1. trempa92

    DS-2CD2387G2P-LSU/SL triggers Home Assistant a lot

    Then i wouldnt know. All event integrations i did, work as they should. Either via cloud or locally. It has to do with either camera settings or something with HA, since you stated its same as on other 2 cameras, i believe its time you hit the HA community forum.
  2. trempa92

    Finding out IPC Password, without reset

    If its firmware < june 2021 then use RCE Otherwise there is not chance, besides using an old IP camera with 5.3.2 fw or older as a trojan horse on PoE NVR.
  3. trempa92

    DS-2CD2387G2P-LSU/SL triggers Home Assistant a lot

    If you receive by listener mode, it seems your HA does not respond 200OK to an event in timely manner and you might get duplicate due to ANR option. Or you are processing additional events which are not Motion/intrussion/line crossing and parse them as motion
  4. trempa92

    DS-2CD2342WD-I Password reset

    You can flash older firmware, it might reset itself to factory Cheers,
  5. trempa92

    iDS-2CD7A26G0/P-IZHS get captured plate numbers via ISAPI or just API?

    Well i just checked. Your camera lacks serie 7 H8 platform API. Your's is value serie(lets say H8 serie 7 is almost double the price of yours) using its own api style. Register at tpp.hikvision.com , sign NDA and download api doc for your camera. Probably have its own api but probably stripped...
  6. trempa92

    iDS-2CD7A26G0/P-IZHS get captured plate numbers via ISAPI or just API?

    You are not correctly authorizing on camera to actually do anything :/ Camera is using Digest Auth
  7. trempa92

    DS-2XS2T47G1-LDH/4G/C18S40(4MM) - Initial Set up problems

    Yea , serie 2 is naked, serie 6 supports everything. You probably saw serie 6 reviews
  8. trempa92

    how to unbind hikvision cams

    Free method require installer account on HPP. It is always free for authorized installers/distributers and not for end users. You can either Reset or unbind via it. If you have an installer account, either help a men or don't. Taking money for a minute job is extorsion. In my case i have...
  9. trempa92

    DS-K1T342MFWX-E How to list available groups?

    Hi @BryarGh Sadly you cannot list all groups with a single query, you will unfortunately need to loop and exit until first return "enable": false, Hopefully you will use incremental ID starting from 1 Manually deleting events is also weird You do PUT...
  10. trempa92

    API for hikvision face detection DS-k1T320EWX

    If you want to hold session then you need SDK. But most new devices reject SDK and go totally OpenApi I have AuthService class which i call for each CRUD operation. Its not messy,it doesnt bottleneck. and its barely visible in code.
  11. trempa92

    Enable/Disable "Notify Surveillance Center" via ISAPI

    Sometimes body co tains multipart, you dont necesarilly need to send post put entire body, just part of it that you need
  12. trempa92

    DS-2CD2443G2-IW-W Image rotation setting

    Stating it supports HTTP does not necesarilly means web interface but rather it supports HTTP traffic, and in hikvision case thats ISAPI protocol
  13. trempa92

    API Fingerprint for DS-K1T343EFWX

    Enrolling GET which will receive fingerprintData Then you apply this fingerprint data on User with POST tpp.hikvision.com
  14. trempa92

    Vision problem DS-2DE4A425IW-DE

    id check the 4 pin lens cable to the board, it may be loose. Besides that id tell its goner
  15. trempa92

    Alternative way of recovering HikVision NVR password

    @blakeBSI 1. Sugarhill12345 2. Sugarhill12345 3. Sugarhill12345 4. asdf1234 5. asdf1234 6. asdf1234
  16. trempa92

    Hikconnect / Hikpartner

    No, it does not effect speed. Yes its not possible, hikvision does not allow maintaining in other countries, per their fair play policy. If you are an authorized installer, you could ask your distributer to contact hikvision to make exception if you maintain a company which is multi national.
  17. trempa92

    Recommendation for new camera

    There is none in g3 that have 1/1.2 . G3 4mp with 1/1.8 will give a nice image in low light enviroment Only 1/1.2 i saw was 8mp g2 version whivh is eol now, replaced by g2h You could go with dqrkfigther 2.0 and awds plus p-iris, but cost is double of g3 colorvue
  18. trempa92

    Recommendation for new camera

    2387G3 for turret or 2687G3 for bullet
  19. trempa92

    Hikvision KD8003 not visible in SADP when connected to NVR

    Its because the AT/AF standards missing on PoE NVR's while available on Switches
  20. trempa92

    API for hikvision face detection DS-k1T320EWX

    Thats weird, as you do same ISAPI call with just different body. You are not holding the session, its POST all over again in loop. So each POST is new digest auth
  21. trempa92

    API for hikvision face detection DS-k1T320EWX

    You need to loop using max search parameter of 30 and startindex so first is 0:30 then 30:30 then 60:30, you get the point When you receive response NO MORE meaning you hit the end, make that as background service that polls every X seconds or restart upon end.
  22. trempa92

    Does the DS-2SF8C442MXG-ELW/26 have people tracking?

    Under event linkages you will see tracking option
  23. trempa92

    Hikvision dual sensor ANPR

    The channel 2 is to get colorfull video, because ANPR camera during the night shows only license plate and lights.. its too dark to get other details. Hence second channel to pick up vehicle information and classificaation during the night
  24. trempa92

    DS-2CD4B25G0-IZS - 4.7~65.8mm - Firmware can not to find download

    5,5,86 is latest but will not gain you much changes...
  25. trempa92

    Android SADP Tools - Development in progress

    UPDATE: Started working on basic configurations
  26. trempa92

    Android SADP Tools - Development in progress

    Totally doable.
  27. trempa92

    Android SADP Tools - Development in progress

    Apk by default can be decompiled so it will be open source anyway :) C# is my main ,so i wouldnt really need help there haha You can give suggestions, what do you think it would be nice to have?
  28. trempa92

    Android SADP Tools - Development in progress

    UPDATE: Entire ERR list translation is done. So there wont be any Error number, it will be entire explanation
  29. trempa92

    Android SADP Tools - Development in progress

    UPDATE: After taking some time to convert java to kotlin + merging both sadp sdk and hcnetsk on android and having alot of duplicates error. Finally live view have been implemented. So now everything else will go smoother And after roating phone you get fullscreen Cheers