Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Section


Column
width50%


Panel
borderColor#CCCCCC
bgColor#FFFFFF
titleBGColor#F0F0F0
borderStylesolid
titleIn the section:
borderStylesolid
Table of Contents



Column
 


Video archive stream is sent on the same format as live video.

...

In return XML will be received:

 

<?xml version="1.0" encoding="UTF-8"?>

<records>

<records count="1" complete="YES" sort="INCREASE">

    <record>

        <from>2011-09-01T00:00:00-05:00</from>

        <to>2011-09-01T00:00:35-05:00</to>

    </record>

    <record>

        <from>2011-09-01T00:00:35-05:00</from>

        <to>2011-09-01T00:01:10-05:00</to>

    </record>

</records>

 

Getting one frame from archive - "arc.frame"

...

http://example.com:[port]/web2/secure/archive/CAM:1/2013-10-18/?days=10

XML:

 

<?xml version="1.0" encoding="UTF-16"?>

<days>

    <day>

        <id>2013-11-10T00:00:00-02:00</id>

        <records>

            <from>2013-11-10T18:44:01.579-02:00</from>

            <to>2013-11-10T18:44:09.717-02:00</to>

        </records>

    </day>

    <day>

        <id>2013-11-18T00:00:00-02:00</id>

        <records>

            <from>2013-11-18T18:38:30.252-02:00</from>

            <to>2013-11-18T18:38:56.942-02:00</to>

        </records>

        <records>

            <from>2013-11-18T18:39:08.321-02:00</from>

            <to>2013-11-18T18:39:10.080-02:00</to>

        </records>

    </day>

</days>

 

JSON:

 

[ {

  "id" : "2013-11-10T00:00:00.000-02:00",

  "records" : [ {

    "from" : "2013-11-10T18:44:01.579-02:00",

    "to" : "2013-11-10T18:44:09.717-02:00"

  } ]

}, {

  "id" : "2013-11-18T00:00:00.000-02:00",

  "records" : [ {

    "from" : "2013-11-18T18:38:30.252-02:00",

    "to" : "2013-11-18T18:38:56.942-02:00"

  }, {

    "from" : "2013-11-18T18:39:08.321-02:00",

    "to" : "2013-11-18T18:39:10.080-02:00"

  } ]

} ]

 

Getting records for a month (shows days of September at which there are records):

http://example.com:[port]/web2/secure/archive/CAM:2/2011-12/

XML:

 

<?xml version="1.0" encoding="UTF-8"?>

<days>

    <day>

        <id>2011-09-02T00:00:00-05:00</id>

    </day>

    <day>

        <id>2011-09-03T00:00:00-05:00</id>

    </day>

    <day>

        <id>2011-09-05T00:00:00-05:00</id>

    </day>

</days>

 

JSON:

 

[ {

  "id" : "2011-09-01T00:00:00-0500",

  "records" : [ ]

}, {

  "id" : "2011-09-03T00:00:00-0500",

  "records" : [ ]

}, {

  "id" : "2011-09-01T00:00:00-0500",

  "records" : [ ]

} ]

 

If there are no records, the following will be received

...