Analysis of videos (QUALITY) and biometric collation (BIOMETRY) of persons in videos within a single folder.
Task:
Verify the liveliness of persons’ records in two video files within one folder and perform biometric collation of persons in these files.
Solution:
First, we must create in the system a folder with following files:
- video file in which the camera zooms in while focused on a person's face, tags “video_selfie”, “video_selfie_zoom_in”, “orientation_portrait”;
- video file in which the camera zooms out while focused on a person's face, tags “video_selfie”, “video_selfie_zoom_out”, “orientation_portrait”.
A method for creating folders in the system is described in the relevant section of these FAQs.
Requests for creation a target folder for this example:
HTTP
Bash
Python
php
Java
POST /api/folders/ HTTP/1.1
Host: youradress.ru
X-Forensic-Access-Token: 0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1
User-Agent: PostmanRuntime/7.15.2
Accept: */*
Cache-Control: no-cache
Postman-Token: 80e8f921-5d7d-4946-9e08-7f08f3ca200e,a4fb92cd-121e-404d-a0b1-9ccf1271d3ed
Host: youradress.ru
Accept-Encoding: gzip, deflate
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Length: 10239048
Connection: keep-alive
cache-control: no-cache
Content-Disposition: form-data; name="video1"; filename="/X:/close_1555917707831.mp4
------WebKitFormBoundary7MA4YWxkTrZu0gW--,
Content-Disposition: form-data; name="video1"; filename="/X:/close_1555917707831.mp4
------WebKitFormBoundary7MA4YWxkTrZu0gW--
Content-Disposition: form-data; name="payload"
{
"media:tags": {
"video1": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"video2": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
]
}
}
------WebKitFormBoundary7MA4YWxkTrZu0gW--,
Content-Disposition: form-data; name="video1"; filename="/X:/close_1555917707831.mp4
------WebKitFormBoundary7MA4YWxkTrZu0gW--
Content-Disposition: form-data; name="payload"
{
"media:tags": {
"video1": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"video2": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
]
}
}
------WebKitFormBoundary7MA4YWxkTrZu0gW--
Content-Disposition: form-data; name="video2"; filename="/X:/far_1555917457060.mp4
------WebKitFormBoundary7MA4YWxkTrZu0gW--
curl -X POST \
https://youradress.ru/api/folders/ \
-H 'Accept: */*' \
-H 'Accept-Encoding: gzip, deflate' \
-H 'Cache-Control: no-cache' \
-H 'Connection: keep-alive' \
-H 'Content-Length: 10239048' \
-H 'Content-Type: multipart/form-data; boundary=--------------------------443599897852631342078710' \
-H 'Host: youradress.ru' \
-H 'Postman-Token: 80e8f921-5d7d-4946-9e08-7f08f3ca200e,3163cc59-0aea-44e2-9d44-e74500f38af4' \
-H 'User-Agent: PostmanRuntime/7.15.2' \
-H 'X-Forensic-Access-Token: 0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1' \
-H 'cache-control: no-cache' \
-H 'content-type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW' \
-F 'video1=@/X:/close_1555917707831.mp4' \
-F 'payload={
"media:tags": {
"video1": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"video2": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
]
}
}' \
-F 'video2=@/X:/far_1555917457060.mp4'
import requests
url = "https://youradress.ru/api/folders/"
payload = "------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"video1\"; filename=\"close_1555917707831.mp4\"\r\nContent-Type: video/mp4\r\n\r\n\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"payload\"\r\n\r\n{\n \"media:tags\": {\n \"video1\": [\n \"video_selfie\",\n \"video_selfie_zoom_in\",\n \"orientation_portrait\"\n ],\n\t \"video2\": [\n \"video_selfie\",\n \"video_selfie_zoom_out\",\n \"orientation_portrait\"\n ]\n }\n}\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"video2\"; filename=\"far_1555917457060.mp4\"\r\nContent-Type: video/mp4\r\n\r\n\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW--"
headers = {
'content-type': "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW",
'X-Forensic-Access-Token': "0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1",
'User-Agent': "PostmanRuntime/7.15.2",
'Accept': "*/*",
'Cache-Control': "no-cache",
'Postman-Token': "80e8f921-5d7d-4946-9e08-7f08f3ca200e,fc182f0a-7a0a-412c-a650-fe3df84fdbf7",
'Host': "youradress.ru",
'Accept-Encoding': "gzip, deflate",
'Content-Type': "multipart/form-data; boundary=--------------------------443599897852631342078710",
'Content-Length': "10239048",
'Connection': "keep-alive",
'cache-control': "no-cache"
}
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)
setUrl('https://youradress.ru/api/folders/');
$request->setMethod(HTTP_METH_POST);
$request->setHeaders(array(
'cache-control' => 'no-cache',
'Connection' => 'keep-alive',
'Content-Length' => '10239048',
'Content-Type' => 'multipart/form-data; boundary=--------------------------443599897852631342078710',
'Accept-Encoding' => 'gzip, deflate',
'Host' => 'youradress.ru',
'Postman-Token' => '80e8f921-5d7d-4946-9e08-7f08f3ca200e,bde785d0-1170-46d0-8dd6-7981955b0569',
'Cache-Control' => 'no-cache',
'Accept' => '*/*',
'User-Agent' => 'PostmanRuntime/7.15.2',
'X-Forensic-Access-Token' => '0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1',
'content-type' => 'multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW'
));
$request->setBody('------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="video1"; filename="close_1555917707831.mp4"
Content-Type: video/mp4
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="payload"
{
"media:tags": {
"video1": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"video2": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
]
}
}
------WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="video2"; filename="far_1555917457060.mp4"
Content-Type: video/mp4
------WebKitFormBoundary7MA4YWxkTrZu0gW--');
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW");
RequestBody body = RequestBody.create(mediaType, "------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"video1\"; filename=\"close_1555917707831.mp4\"\r\nContent-Type: video/mp4\r\n\r\n\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"payload\"\r\n\r\n{\n \"media:tags\": {\n \"video1\": [\n \"video_selfie\",\n \"video_selfie_zoom_in\",\n \"orientation_portrait\"\n ],\n\t \"video2\": [\n \"video_selfie\",\n \"video_selfie_zoom_out\",\n \"orientation_portrait\"\n ]\n }\n}\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"video2\"; filename=\"far_1555917457060.mp4\"\r\nContent-Type: video/mp4\r\n\r\n\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW--");
Request request = new Request.Builder()
.url("https://youradress.ru/api/folders/")
.post(body)
.addHeader("content-type", "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW")
.addHeader("X-Forensic-Access-Token", "0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1")
.addHeader("User-Agent", "PostmanRuntime/7.15.2")
.addHeader("Accept", "*/*")
.addHeader("Cache-Control", "no-cache")
.addHeader("Postman-Token", "80e8f921-5d7d-4946-9e08-7f08f3ca200e,1bb4d059-b778-4949-95ec-1ad2f67e42c2")
.addHeader("Host", "youradress.ru")
.addHeader("Accept-Encoding", "gzip, deflate")
.addHeader("Content-Type", "multipart/form-data; boundary=--------------------------443599897852631342078710")
.addHeader("Content-Length", "10239048")
.addHeader("Connection", "keep-alive")
.addHeader("cache-control", "no-cache")
.build();
Response response = client.newCall(request).execute();
Server response to the request for creation a target folder:
JSON
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"folder_id": "c3727824-c21d-4425-8c62-e4cbf0cbbc61",
"resolution_time": null,
"resolution_status": "INITIAL",
"resolution_endpoint": null,
"resolution_state_hash": "5af47959fe627cdf",
"resolution_comment": null,
"resolution_suggest": null,
"resolution_author_id": null,
"is_archive": false,
"media": [
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "d11de88a97195d848276a830f55b8efb",
"size": 12464,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
],
"original_name": "far_1555917457060.mp4",
"video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4"
},
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "fed71d242ebf6311bb92f47da670cdce",
"size": 9403,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"original_name": "close_1555917707831.mp4",
"video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4"
}
]
}
Following details of the response will be needed for subsequent interactions:
- folder_id = c3727824-c21d-4425-8c62-e4cbf0cbbc61 - identifier of the created folder.
Next, we have to assign two analysis types to the target folder: BIOMETRY and QUALITY. In this example all media data present in the folder can be used in both analyses, so no additional assignment features are required. Analyses are assigned to all files in the folder with default parameters.
Requests for analyses’ assignment within the task:
HTTP
Bash
Python
php
Java
POST /api/folders/c3727824-c21d-4425-8c62-e4cbf0cbbc61/analyses/ HTTP/1.1
Host: youradress.ru
X-Forensic-Access-Token: 0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1
Content-Type: application/json
User-Agent: PostmanRuntime/7.15.2
Accept: */*
Cache-Control: no-cache
Postman-Token: bae3eca1-955e-4eff-a39e-c39c8f4e6aa9,729855c8-1d2e-4dc3-b428-d4109827e8b1
Host: youradress.ru
Accept-Encoding: gzip, deflate
Content-Length: 97
Connection: keep-alive
cache-control: no-cache
{
"analyses": [
{
"type": "biometry"
},
{
"type": "quality"
}
]
}
curl -X POST \
https://youradress.ru/api/folders/c3727824-c21d-4425-8c62-e4cbf0cbbc61/analyses/ \
-H 'Accept: */*' \
-H 'Accept-Encoding: gzip, deflate' \
-H 'Cache-Control: no-cache' \
-H 'Connection: keep-alive' \
-H 'Content-Length: 97' \
-H 'Content-Type: application/json' \
-H 'Host: youradress.ru' \
-H 'Postman-Token: bae3eca1-955e-4eff-a39e-c39c8f4e6aa9,6d334bd0-c27f-42c4-8c00-fb472a93a593' \
-H 'User-Agent: PostmanRuntime/7.15.2' \
-H 'X-Forensic-Access-Token: 0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1' \
-H 'cache-control: no-cache' \
-d '{
"analyses": [
{
"type": "biometry"
},
{
"type": "quality"
}
]
}'
import requests
url = "https://youradress.ru/api/folders/c3727824-c21d-4425-8c62-e4cbf0cbbc61/analyses/"
payload = "{\n \"analyses\": [\n {\n \"type\": \"biometry\"\n },\n {\n \"type\": \"quality\"\n }\n ]\n}"
headers = {
'X-Forensic-Access-Token': "0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1",
'Content-Type': "application/json",
'User-Agent': "PostmanRuntime/7.15.2",
'Accept': "*/*",
'Cache-Control': "no-cache",
'Postman-Token': "bae3eca1-955e-4eff-a39e-c39c8f4e6aa9,37dc45d2-245f-43ba-817a-b982a29549ab",
'Host': "youradress.ru",
'Accept-Encoding': "gzip, deflate",
'Content-Length': "97",
'Connection': "keep-alive",
'cache-control': "no-cache"
}
response = requests.request("POST", url, data=payload, headers=headers)
print(response.text)
setUrl('https://youradress.ru/api/folders/c3727824-c21d-4425-8c62-e4cbf0cbbc61/analyses/');
$request->setMethod(HTTP_METH_POST);
$request->setHeaders(array(
'cache-control' => 'no-cache',
'Connection' => 'keep-alive',
'Content-Length' => '97',
'Accept-Encoding' => 'gzip, deflate',
'Host' => 'youradress.ru',
'Postman-Token' => 'bae3eca1-955e-4eff-a39e-c39c8f4e6aa9,bc99b271-4051-412a-84d4-d3d4dd8ea787',
'Cache-Control' => 'no-cache',
'Accept' => '*/*',
'User-Agent' => 'PostmanRuntime/7.15.2',
'Content-Type' => 'application/json',
'X-Forensic-Access-Token' => '0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1'
));
$request->setBody('{
"analyses": [
{
"type": "biometry"
},
{
"type": "quality"
}
]
}');
try {
$response = $request->send();
echo $response->getBody();
} catch (HttpException $ex) {
echo $ex;
}
OkHttpClient client = new OkHttpClient();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{\n \"analyses\": [\n {\n \"type\": \"biometry\"\n },\n {\n \"type\": \"quality\"\n }\n ]\n}");
Request request = new Request.Builder()
.url("https://youradress.ru/api/folders/c3727824-c21d-4425-8c62-e4cbf0cbbc61/analyses/")
.post(body)
.addHeader("X-Forensic-Access-Token", "0ccbdb4627c9d07c6c5b8f6e6cca44b5f8cb0c54ad7659098fa336240d494b0f9035e14bc42fc461224a9719f105e41026fed0f6f14188d9107b8c3d697a0cb1")
.addHeader("Content-Type", "application/json")
.addHeader("User-Agent", "PostmanRuntime/7.15.2")
.addHeader("Accept", "*/*")
.addHeader("Cache-Control", "no-cache")
.addHeader("Postman-Token", "bae3eca1-955e-4eff-a39e-c39c8f4e6aa9,53a8bb66-1af8-46e6-ac4e-a898702e5c94")
.addHeader("Host", "youradress.ru")
.addHeader("Accept-Encoding", "gzip, deflate")
.addHeader("Content-Length", "97")
.addHeader("Connection", "keep-alive")
.addHeader("cache-control", "no-cache")
.build();
Response response = client.newCall(request).execute();
Server response to the requests for analyses’ assignment:
JSON
[
{
"time_created": 1580118310,
"time_updated": 1580118310,
"meta_data": null,
"analyse_id": "6f92c95d-68de-43b4-8040-37a11bf12eb6",
"folder_id": "c3727824-c21d-4425-8c62-e4cbf0cbbc61",
"type": "BIOMETRY",
"state": "PROCESSING",
"results_data": null,
"confs": {},
"error_message": null,
"error_code": null,
"resolution_operator": null,
"source_media": [
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "d11de88a97195d848276a830f55b8efb",
"size": 12464,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
],
"original_name": "far_1555917457060.mp4",
"video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4"
},
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "fed71d242ebf6311bb92f47da670cdce",
"size": 9403,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"original_name": "close_1555917707831.mp4",
"video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4"
}
],
"results_media": [
{
"media_association_id": 440459,
"analyse_id": "6f92c95d-68de-43b4-8040-37a11bf12eb6",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 440460,
"analyse_id": "6f92c95d-68de-43b4-8040-37a11bf12eb6",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"output_images": [],
"collection_persons": []
}
],
"results_group": [],
"resolution_status": "PROCESSING",
"resolution": "PROCESSING"
},
{
"time_created": 1580118310,
"time_updated": 1580118310,
"meta_data": null,
"analyse_id": "35ad91ee-d1dc-40c2-8175-1374fbafe137",
"folder_id": "c3727824-c21d-4425-8c62-e4cbf0cbbc61",
"type": "QUALITY",
"state": "PROCESSING",
"results_data": null,
"confs": {},
"error_message": null,
"error_code": null,
"resolution_operator": null,
"source_media": [
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "d11de88a97195d848276a830f55b8efb",
"size": 12464,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
],
"original_name": "far_1555917457060.mp4",
"video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4"
},
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "fed71d242ebf6311bb92f47da670cdce",
"size": 9403,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"original_name": "close_1555917707831.mp4",
"video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4"
}
],
"results_media": [
{
"media_association_id": 440461,
"analyse_id": "35ad91ee-d1dc-40c2-8175-1374fbafe137",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 440462,
"analyse_id": "35ad91ee-d1dc-40c2-8175-1374fbafe137",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"output_images": [],
"collection_persons": []
}
],
"results_group": [],
"resolution_status": "PROCESSING",
"resolution": "PROCESSING"
}
]
Accomplishing an analysis takes time, the result should be viewed with Folder Analyses [LIST] method or Folder [LIST] method with specified parameters:
- folder_id= c3727824-c21d-4425-8c62-e4cbf0cbbc61
- with_analyses=true
Deliverables produced by the analyses:
JSON Folder [LIST]
JSON Folder Analyses [LIST]
{
"offset": 0,
"limit": 100,
"total_count": 1,
"items": [
{
"time_created": 1580118310,
"time_updated": 1580118310,
"technical_meta_data": {},
"meta_data": {},
"folder_id": "c3727824-c21d-4425-8c62-e4cbf0cbbc61",
"user_id": "34cbf0111c61-e76b-4e78-82fa-111c6134cbf0",
"resolution_time": 1580118310,
"resolution_status": "FINISHED",
"resolution_endpoint": null,
"resolution_state_hash": "362fc86f0368b092",
"resolution_comment": "[]",
"resolution_suggest": null,
"resolution_author_id": null,
"is_archive": false,
"media": [
{
"time_created": 1580118302,
"time_updated": 1580118302,
"technical_meta_data": {},
"meta_data": {},
"media_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"media_type": "IMAGE_FOLDER",
"info": {
"video": {
"FPS": 29.97002997002997,
"md5": "ccb7af6290c02ea11ab6750477e7d54e",
"size": 5464219,
"width": 1280,
"height": 720,
"duration": 4.41,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 29.97002997002997,
"md5": "ccb7af6290c02ea11ab6750477e7d54e",
"size": 5464219,
"width": 1280,
"height": 720,
"duration": 4.41,
"mime-type": "video/mp4"
},
"tags": [],
"original_name": "far_1555917457060.mp4",
"image_id": "aa723d14-4566-4192-9cc9-5b624cbcd343",
"original_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38_thumb.jpeg"
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4"
},
{
"time_created": 1580118302,
"time_updated": 1580118302,
"technical_meta_data": {},
"meta_data": {},
"media_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"media_type": "IMAGE_FOLDER",
"info": {
"video": {
"FPS": 29.97002997002997,
"md5": "ccb7af6290c02ea11ab6750477e7d54e",
"size": 5464219,
"width": 1280,
"height": 720,
"duration": 4.41,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 29.97002997002997,
"md5": "ccb7af6290c02ea11ab6750477e7d54e",
"size": 5464219,
"width": 1280,
"height": 720,
"duration": 4.41,
"mime-type": "video/mp4"
},
"tags": [],
"original_name": "far_1555917457060.mp4",
"image_id": "aa723d14-4566-4192-9cc9-5b624cbcd343",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4"
},
{
"time_created": 1580118315,
"time_updated": 1580118315,
"meta_data": {},
"media_id": "26c4258f-ab96-4fbe-bf69-cc76f8d157ea",
"media_type": "IMAGE_FOLDER",
"info": {
"thumb": {
"md5": "5feda0d12b6452492d59aa102b446810",
"size": 4449,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
},
"original": {
"md5": "a4f5ac5a57bd854dddc6a263b6f5ba38",
"size": 3359,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
}
},
"tags": [],
"original_name": "",
"image_id": "26c4258f-ab96-4fbe-bf69-cc76f8d157ea",
"original_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/26c4258f-ab96-4fbe-bf69-cc76f8d157ea.jpeg",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/26c4258f-ab96-4fbe-bf69-cc76f8d157ea_thumb.jpeg",
"media_association_id": 440459
}
],
"analyses": [
{
"time_created": 1580118310,
"time_updated": 1580118321,
"meta_data": null,
"analyse_id": "35ad91ee-d1dc-40c2-8175-1374fbafe137",
"folder_id": "c3727824-c21d-4425-8c62-e4cbf0cbbc61",
"type": "QUALITY",
"state": "FINISHED",
"results_data": null,
"confs": {},
"error_message": null,
"error_code": null,
"resolution_operator": null,
"source_media": [
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "d11de88a97195d848276a830f55b8efb",
"size": 12464,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
],
"original_name": "far_1555917457060.mp4",
"video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4"
},
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "fed71d242ebf6311bb92f47da670cdce",
"size": 9403,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"original_name": "close_1555917707831.mp4",
"video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4"
}
],
"results_media": [
{
"media_association_id": 440461,
"analyse_id": "35ad91ee-d1dc-40c2-8175-1374fbafe137",
"results_data": {
"confidence_replay": 7.24543497e-06,
"confidence_liveness": null,
"confidence_spoofing": 7.24543497e-06
},
"media_association_type": "VIDEO",
"source_video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 440462,
"analyse_id": "35ad91ee-d1dc-40c2-8175-1374fbafe137",
"results_data": {
"confidence_replay": 0.0,
"confidence_liveness": null,
"confidence_spoofing": 0.0
},
"media_association_type": "VIDEO",
"source_video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"output_images": [],
"collection_persons": []
}
],
"results_group": [],
"resolution_status": "SUCCESS",
"resolution": "SUCCESS"
},
{
"time_created": 1580118310,
"time_updated": 1580118319,
"meta_data": null,
"analyse_id": "6f92c95d-68de-43b4-8040-37a11bf12eb6",
"folder_id": "c3727824-c21d-4425-8c62-e4cbf0cbbc61",
"type": "BIOMETRY",
"state": "FINISHED",
"results_data": {
"max_confidence": 1.0,
"min_confidence": 1.0
},
"confs": {},
"error_message": null,
"error_code": null,
"resolution_operator": null,
"source_media": [
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "d11de88a97195d848276a830f55b8efb",
"size": 12464,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
],
"original_name": "far_1555917457060.mp4",
"video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4"
},
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "fed71d242ebf6311bb92f47da670cdce",
"size": 9403,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"original_name": "close_1555917707831.mp4",
"video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4"
}
],
"results_media": [
{
"media_association_id": 440459,
"analyse_id": "6f92c95d-68de-43b4-8040-37a11bf12eb6",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"output_images": [
{
"time_created": 1580118315,
"time_updated": 1580118315,
"meta_data": {},
"media_id": "26c4258f-ab96-4fbe-bf69-cc76f8d157ea",
"media_type": "IMAGE_RESULT_ANALYSE_SINGLE",
"info": {
"thumb": {
"md5": "5feda0d12b6452492d59aa102b446810",
"size": 4449,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
},
"original": {
"md5": "a4f5ac5a57bd854dddc6a263b6f5ba38",
"size": 3359,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
}
},
"tags": [],
"original_name": "",
"image_id": "26c4258f-ab96-4fbe-bf69-cc76f8d157ea",
"original_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/26c4258f-ab96-4fbe-bf69-cc76f8d157ea.jpeg",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/26c4258f-ab96-4fbe-bf69-cc76f8d157ea_thumb.jpeg",
"media_association_id": 440459
}
],
"collection_persons": []
},
{
"media_association_id": 440460,
"analyse_id": "6f92c95d-68de-43b4-8040-37a11bf12eb6",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"output_images": [
{
"time_created": 1580118319,
"time_updated": 1580118319,
"meta_data": {},
"media_id": "476655ce-1199-4b21-adc0-ee5af3db23fb",
"media_type": "IMAGE_RESULT_ANALYSE_SINGLE",
"info": {
"thumb": {
"md5": "bee56853bd7d16c4ab826eb768717498",
"size": 3454,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
},
"original": {
"md5": "5cb70f85de49bce2acacdf4fc19affad",
"size": 2596,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
}
},
"tags": [],
"original_name": "",
"image_id": "476655ce-1199-4b21-adc0-ee5af3db23fb",
"original_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/476655ce-1199-4b21-adc0-ee5af3db23fb.jpeg",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/476655ce-1199-4b21-adc0-ee5af3db23fb_thumb.jpeg",
"media_association_id": 440460
}
],
"collection_persons": []
}
],
"results_group": [],
"resolution_status": "SUCCESS",
"resolution": "SUCCESS"
}
]
}
]
}
[
{
"time_created": 1580118310,
"time_updated": 1580118321,
"meta_data": null,
"analyse_id": "35ad91ee-d1dc-40c2-8175-1374fbafe137",
"folder_id": "c3727824-c21d-4425-8c62-e4cbf0cbbc61",
"type": "QUALITY",
"state": "FINISHED",
"results_data": null,
"confs": {},
"error_message": null,
"error_code": null,
"resolution_operator": null,
"source_media": [
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "d11de88a97195d848276a830f55b8efb",
"size": 12464,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
],
"original_name": "far_1555917457060.mp4",
"video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4"
},
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "fed71d242ebf6311bb92f47da670cdce",
"size": 9403,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"original_name": "close_1555917707831.mp4",
"video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4"
}
],
"results_media": [
{
"media_association_id": 440461,
"analyse_id": "35ad91ee-d1dc-40c2-8175-1374fbafe137",
"results_data": {
"confidence_replay": 7.24543497e-06,
"confidence_liveness": null,
"confidence_spoofing": 7.24543497e-06
},
"media_association_type": "VIDEO",
"source_video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"output_images": [],
"collection_persons": []
},
{
"media_association_id": 440462,
"analyse_id": "35ad91ee-d1dc-40c2-8175-1374fbafe137",
"results_data": {
"confidence_replay": 0.0,
"confidence_liveness": null,
"confidence_spoofing": 0.0
},
"media_association_type": "VIDEO",
"source_video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"output_images": [],
"collection_persons": []
}
],
"results_group": [],
"resolution_status": "SUCCESS",
"resolution": "SUCCESS"
},
{
"time_created": 1580118310,
"time_updated": 1580118319,
"meta_data": null,
"analyse_id": "6f92c95d-68de-43b4-8040-37a11bf12eb6",
"folder_id": "c3727824-c21d-4425-8c62-e4cbf0cbbc61",
"type": "BIOMETRY",
"state": "FINISHED",
"results_data": {
"max_confidence": 1.0,
"min_confidence": 1.0
},
"confs": {},
"error_message": null,
"error_code": null,
"resolution_operator": null,
"source_media": [
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "d11de88a97195d848276a830f55b8efb",
"size": 12464,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 29.92,
"md5": "12b17deef65c784118d28b096fe2ded0",
"size": 5179341,
"width": 1920,
"height": 1080,
"duration": 4.22,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_out",
"orientation_portrait"
],
"original_name": "far_1555917457060.mp4",
"video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b147959b-9606-4f0c-ae4f-845dcf63da38.mp4"
},
{
"time_created": 1580118302,
"time_updated": 1580118302,
"meta_data": {},
"media_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"media_type": "VIDEO_FOLDER",
"info": {
"thumb": {
"md5": "fed71d242ebf6311bb92f47da670cdce",
"size": 9403,
"width": 168,
"height": 300,
"mime-type": "image/jpeg"
},
"video": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
},
"preview": {
"FPS": 24.83,
"md5": "60fc7a959df93508db9f57abc3de6875",
"size": 5058984,
"width": 1920,
"height": 1080,
"duration": 4.29,
"mime-type": "video/mp4"
}
},
"tags": [
"video_selfie",
"video_selfie_zoom_in",
"orientation_portrait"
],
"original_name": "close_1555917707831.mp4",
"video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"video_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1_thumb.jpg",
"preview_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/b798a472-8b84-47bd-843c-aa1cbf797da1.mp4"
}
],
"results_media": [
{
"media_association_id": 440459,
"analyse_id": "6f92c95d-68de-43b4-8040-37a11bf12eb6",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "b147959b-9606-4f0c-ae4f-845dcf63da38",
"output_images": [
{
"time_created": 1580118315,
"time_updated": 1580118315,
"meta_data": {},
"media_id": "26c4258f-ab96-4fbe-bf69-cc76f8d157ea",
"media_type": "IMAGE_RESULT_ANALYSE_SINGLE",
"info": {
"thumb": {
"md5": "5feda0d12b6452492d59aa102b446810",
"size": 4449,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
},
"original": {
"md5": "a4f5ac5a57bd854dddc6a263b6f5ba38",
"size": 3359,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
}
},
"tags": [],
"original_name": "",
"image_id": "26c4258f-ab96-4fbe-bf69-cc76f8d157ea",
"original_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/26c4258f-ab96-4fbe-bf69-cc76f8d157ea.jpeg",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/26c4258f-ab96-4fbe-bf69-cc76f8d157ea_thumb.jpeg",
"media_association_id": 440459
}
],
"collection_persons": []
},
{
"media_association_id": 440460,
"analyse_id": "6f92c95d-68de-43b4-8040-37a11bf12eb6",
"results_data": null,
"media_association_type": "VIDEO",
"source_video_id": "b798a472-8b84-47bd-843c-aa1cbf797da1",
"output_images": [
{
"time_created": 1580118319,
"time_updated": 1580118319,
"meta_data": {},
"media_id": "476655ce-1199-4b21-adc0-ee5af3db23fb",
"media_type": "IMAGE_RESULT_ANALYSE_SINGLE",
"info": {
"thumb": {
"md5": "bee56853bd7d16c4ab826eb768717498",
"size": 3454,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
},
"original": {
"md5": "5cb70f85de49bce2acacdf4fc19affad",
"size": 2596,
"width": 112,
"height": 112,
"mime-type": "image/jpeg"
}
},
"tags": [],
"original_name": "",
"image_id": "476655ce-1199-4b21-adc0-ee5af3db23fb",
"original_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/476655ce-1199-4b21-adc0-ee5af3db23fb.jpeg",
"thumb_url": "http://youradress.ru/static/c3727824-c21d-4425-8c62-e4cbf0cbbc61/476655ce-1199-4b21-adc0-ee5af3db23fb_thumb.jpeg",
"media_association_id": 440460
}
],
"collection_persons": []
}
],
"results_group": [],
"resolution_status": "SUCCESS",
"resolution": "SUCCESS"
}
]
We can see from the response that both analyses were completed successfully ("state": "FINISHED"). A positive resolution is taken on both analyses ("resolution": "SUCCESS"), the faces in the two videos belong to the same person and were not taken from a screen or paper media.