Download OpenAPI specification:Download
Generates and returns a new video id and a presigned URL to put the video on the corresponding S3 bucket. In order to upload the video using the presigned URL you must sent a request with the following contents:
PUT
.X-Amz-ACL
must be public-read
.Content-Type
must be video/mp4
, therefore only mp4 videos are accepted.{- "video_id": "string",
}
Request thumbnail generation for the specified video id and the given video timestamp in seconds, this will save the generated thumbnail in the corresponding S3 bucket, detect labels with Rekognition and save them in DynamoDB.
Video id and timestamp.
video_id | string Video id. |
timestamp | number <seconds> The timestamp where the thumbnail will be generated. |
{- "video_id": "string",
- "timestamp": 0
}
{- "labels": [
- "string"
]
}
Search videos with matching labels specified in the query parameter, these are internally transformed to lower case.
query | string Query string with space separated labels. |
{- "videos": [
- {
- "labels": [
- "string"
],
}
]
}