Changes between Version 7 and Version 8 of Docs/825gen2/Dev/Networking/IPCameras
- Timestamp:
- 03/12/25 08:51:08 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/Networking/IPCameras
v7 v8 5 5 Most IP cameras provide a URL that can be used to obtain a still image such as a jpeg format file. The wget command line utility may be used to obtain the image such as: 6 6 7 {{{ #!c++7 {{{ 8 8 wget 10.1.3.25:/cgi-bin/viewer/video.jpg?resolution=640x480 -O /tmp/img.jpg 9 9 }}} … … 11 11 This could be performed from a system call in an app. A better approach is to use the curl library. Following is an example: 12 12 13 {{{ 13 {{{#!c++ 14 14 15 15 #include "cardinal825.h"