Get the picture at the specific date and time with SDK command

Hi,

There is a lot of information in the SDK, so you need help getting it right.

For example, we have a system with 10 Hikvision NVRs with 16 cameras each (total 160 cameras). We are creating a web page where a user presses a button to display a snapshot of a particular camera on a specific time of day (hh: mm: ss). The archive can be 1 year.

What commands should I use?

If you can use the MIP library the JPEGVideoSource class Get command will give you what you need.

https://doc.developer.milestonesys.com/html/index.html?base=miphelp/class_video_o_s_1_1_platform_1_1_data_1_1_j_p_e_g_video_source.html&tree=tree_search.html?search=jpegvideosource

Simplest sample where you can see the JPEGVideoSource in use might be the CameraStreamResolution sample:

https://doc.developer.milestonesys.com/html/index.html?base=samples/camerastreamresolution.html&tree=tree_2.html

If you use protocols try to explore how the TCP Video Viewer sample gets data in Playback..

https://doc.developer.milestonesys.com/html/index.html?base=samples/tcpviewer_sample.html&tree=tree_3.html

:+1: thanks