...
Section |
---|
Column |
---|
|
Panel |
---|
borderColor | #CCCCCC |
---|
bgColor | #FFFFFF |
---|
titleBGColor | #F0F0F0 |
---|
borderStyle | solid |
---|
title | On the page: |
---|
| |
|
|
Export start
Export from archive:
POST http://IP address:port/prefix/export/archive/{VIDEOSOURCEID}/{BEGINTIME}/{ENDTIME}—archive export.
Export of live video:
POST http://IP address:port/prefix/export/live/{VIDEOSOURCEID}/{BEGINTIME}/{ENDTIME}—live video export.
Tip |
---|
{} – the instanceBEGINTIME and ENDTIME - example, "SERVER1/DeviceIpint.3/SourceEndpoint.video:0:0".
|
Info |
---|
|
then in |
Parameter | Required | Description |
---|
waittimeout | No | Wait timeout in milliseconds required for a frame to arrive. The default value is 10000. If the parameter value is less than the reference |
frames then the export will not be performed.It is recommended to set the value not less than export isn't performed. We recommend specifying the value to at least 30000 |
archive | No | Name of the archive in the hosts/SERVER1/MultimediaStorage.AliceBlue/ |
MultimediaStorage format MultimediaStorage format ( |
see is not specified will be Sample Example of a request:
POST http://127.0.0.1:80/export/archive/Server1/DeviceIpint.1/SourceEndpoint.video:0:0/20200415T085456.908/20200415T085501.908?waittimeout=30000
Request Example of a request body example:
Code Block |
---|
{
"format": "mp4",
"vc": 4,
"comment": "сomment"
} |
The supported parameters that are sent in the body of the initial POST request:
Parameter | Format | Description | Example |
---|
format |
StringText value | Mandatory parameter |
. Available . It sets the format of the output export container. Acceptable values are: |
and pdf. It sets the format of output export containermaxfilesize | Number | | "format": "mp4" "format": "exe" |
maxfilesize | Numeric value | Maximum size of an export file |
Maximum export file size will be is created when the size limit is exceeded. Export results in the collection of files. |
Default The default value is 0 (as a result, a single file) | "maxfilesize": 1e+6 "maxfilesize": 1000000 |
vc, ac |
Number | A compression quality Numeric value | Quality of a compression level for video and audio, respectively. |
Allowed Acceptable values are from 0 to 6 (6 |
means Default The default value is 0 | "vc": 3 |
freq |
NumberNumeric value | Frame rate of the output stream. Default value is 0. |
Available —original—half —quarter —oneStringText value | A template of a time stamp format |
template. Any string can be generated on the basis |
of of http://www.boost.org/doc/libs/1_55_0/doc/html/date_time/date_time_io.html. |
Default The default value is %Y-%b-%d %H:%M:%S |
. The Server does not | The server doesn't check the format of the input string. |
| "tsformat": "%B %Y", |
croparea | Area |
A area (. The default value is [[0, 0], [1,1]] |
—the .Image example: Image Modified
|
Code Block |
---|
"croparea": [
[
0.3,
0.3
],
[
0.8,
0.8
]
] |
|
maskspace | Area |
A area for masking, set in coordinates. By default, a frame |
is not The area An area is specified by at least three anchor points + one terminal point (coincides with one of the anchor points). The reference point is the upper left corner. You can specify |
multiple polygonsImage exampleExample of an image: Image Modified
|
Code Block |
---|
"maskspace": [
[
[
0.2,
0.2
],
[
0.3,
0.7
],
[
0.5,
0.5
],
[
0.2,
0.2
]
]
] |
|
color |
StringText value | Text color of a comment and a time stamp. It is set in the #FFFFFF web format | "color": "#e31e1e", |
comment |
StringText value | A comment | "comment": "сomment" |
Parameters relevant for PDF export only |
:Frame location Location of a frame on the page |
|
commentplace | Area |
Comment location Location of a comment on the page |
|
tsplace | Area |
Time location NumberNumeric value | Page layout. Available values are |
(portrait), 1 (landscape)Example of a responseSample response:
Code Block |
---|
HTTP/1.1 202 Accepted
Connection: Close
Location: /export/3dc15b75-6463-4eb1-ab2d-0eb0a8f54bd3
Cache-Control: no-cache |
Possible errors:
Error code | Description |
---|
400 | Incorrect request |
500 | Server internal error |
Get export status
GET http://IP address:port/export/{id}/status
Tip |
---|
id id is the value from the Location field (here in this case, 3dc15b75-6463-4eb1-ab2d-0eb0a8f54bd3). |
Sample Example of a request:
GET http://127.0.0.1:80/export/3dc15b75-6463-4eb1-ab2d-0eb0a8f54bd3/status
Sample Example of a response:
Code Block |
---|
{
"id": "38e3e286-c07c-490f-a452-e4b541b958c4",
"state": 2,
"progress": 1.000000000e+00,
"error": "",
"files": [
"Server1_DeviceIpint.10[20190903T050000-20190903T050100].mp4"
],
"filesFriendly": [
"Server1_10.RHCP[20190903T050000-20190903T050100].mp4"
]
} |
Parameter | Description |
---|
state | Current state of export. Available values are:
|
—export - —export hasn't been performed,
- 1
|
—export —export completed—export —not - —not enough space to complete the operation,
- 5
|
—the file - —file with the given name already exists,
- 6
|
—no |
progress | Progress of export session in the range from 0 to 1 |
error | Description of error |
() |
files | List of files created as the result of the export |
Download file
GET http://IP address:port/prefix/export/{id}/file
Tip |
---|
id id is the value from the Location field (here in this case, 3dc15b75-6463-4eb1-ab2d-0eb0a8f54bd3). |
Parameter | Required | Description |
---|
name | Yes | Name of a file from the files field |
Sample Example of a request:
GET http://127.0.0.1:80/export/3dc15b75-6463-4eb1-ab2d-0eb0a8f54bd3/file?name=Server1_DeviceIpint.10[20190903T050000-20190903T050100].mp4
Info |
---|
|
On the Server server, the exported file is saved to the C:\ProgramData\AxxonSoft\AxxonOne\Export\{ID} folder. |
Export completion
This request deletes the Deletion of a created file on the Server.server:
DELETE http://IP address:port/prefix/export/{id}
Tip |
---|
id - id is the value from the Location field (
here - in this case, 3dc15b75-6463-4eb1-ab2d-0eb0a8f54bd3)
|
Sample request:
...
...
...
- the timeout cleanup procedure that runs for the first time after 10 hours of continuous Web-Server operation and repeats every 10 minutes. It deletes all files that have had no activity (upload status request, file download) in the last 10 hours.
|
Example of a request:
DELETE http://127.0.0.1:80/export/3dc15b75-6463-4eb1-ab2d-0eb0a8f54bd3