Changes between Version 7 and Version 8 of Docs/825gen2/Dev/Networking/IPCameras


Ignore:
Timestamp:
03/12/25 08:51:08 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/825gen2/Dev/Networking/IPCameras

    v7 v8  
    55Most 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:
    66
    7 {{{#!c++
     7{{{
    88wget 10.1.3.25:/cgi-bin/viewer/video.jpg?resolution=640x480 -O /tmp/img.jpg
    99}}}
     
    1111This could be performed from a system call in an app. A better approach is to use the curl library. Following is an example:
    1212
    13 {{{
     13{{{#!c++
    1414
    1515#include "cardinal825.h"