All Products
Search
Document Center

Intelligent Media Services:SearchMediaClipByFace

Last Updated:Dec 16, 2024

Queries the information about media asset clips that are related to a specific face based on the response to the SearchMediaByFace operation.

Operation description

If you have questions about how to use the media asset search feature in Intelligent Media Services (IMS), contact technical support in the DingTalk group (ID 30415005038).

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

Authorization information

The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:

  • Operation: the value that you can use in the Action element to specify the operation on a resource.
  • Access level: the access level of each operation. The levels are read, write, and list.
  • Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
    • The required resource types are displayed in bold characters.
    • If the permissions cannot be granted at the resource level, All Resources is used in the Resource type column of the operation.
  • Condition Key: the condition key that is defined by the cloud service.
  • Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
OperationAccess levelResource typeCondition keyAssociated operation
ice:SearchMediaClipByFaceget
*All Resources
*
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
SearchLibNamestringNo

The name of the search library.

test1
PageNointegerNo

The page number. Default value: 1.

1
PageSizeintegerNo

The number of entries per page. Default value: 10. Maximum value: 50.

10
EntityIdstringNo

The ID of the entity.

2d3bf1e35a1e42b5ab338d701efa****
FaceSearchTokenstringYes

The value of this parameter is the same as that of the FaceSearchToken parameter in the SearchMediaByFace request. This specifies to return media asset clips that meet the same query conditions.

zxtest-huangxuan-2023-3-7-V1
MediaIdstringYes

The ID of the media asset.

3b187b3620c8490886cfc2a9578c****

Response parameters

ParameterTypeDescriptionExample
object

Schema of Response

RequestIdstring

The ID of the request.

E44FFACD-9E90-555A-A09A-6FD3B7335E39
Successstring

Indicates whether the request was successful. Valid values: true and false.

true
Codestring

The status code returned.

200
MediaClipListarray<object>

The media asset clips that meet the requirements.

MediaClipobject
Scorefloat

The score of the clip. The value is of the Float type. The value is in the range of [0,1].

0.99041677
EntityIdstring

The ID of the entity, which is the same as the entity ID returned in tag analysis.

1031025****
LabelNamestring

The name of the entity.

OccurrencesInfosarray<object>

The information about clips related to the face.

OccurrencesInfoobject
StartTimefloat

The start time of the clip. Unit: seconds. The value is of the Float type.

61.066353
EndTimefloat

The end time of the clip. Unit: seconds. The value is of the Float type.

69.06635
TrackDataarray<object>

The information about the face in the clip.

TrackDataobject
Timestampfloat

The timestamp when the face appears in the clip. Unit: seconds. The value is of the Float type.

62.03302
BoxPositionobject

The coordinates of the face.

Xinteger

The x-axis coordinate of the upper-left corner. Unit: pixels.

517
Yinteger

The y-axis coordinate of the upper-left corner. Unit: pixels.

409
Winteger

The width of the rectangle frame. Unit: pixels.

128
Hinteger

The height of the rectangle frame. Unit: pixels.

168
Categorystring

The type of the character. Valid values: celebrity sensitive politician custom unknown

celebrity
Totallong

The total number of media asset clips that meet the conditions.

5

Examples

Sample success responses

JSONformat

{
  "RequestId": "E44FFACD-9E90-555A-A09A-6FD3B7335E39",
  "Success": "true",
  "Code": "200",
  "MediaClipList": [
    {
      "Score": 0.99041677,
      "EntityId": "1031025****",
      "LabelName": "",
      "OccurrencesInfos": [
        {
          "StartTime": 61.066353,
          "EndTime": 69.06635,
          "TrackData": [
            {
              "Timestamp": 62.03302,
              "BoxPosition": {
                "X": 517,
                "Y": 409,
                "W": 128,
                "H": 168
              }
            }
          ]
        }
      ],
      "Category": "celebrity"
    }
  ],
  "Total": 5
}

Error codes

For a list of error codes, visit the Service error codes.

Change history

Change timeSummary of changesOperation
2023-10-12The request parameters of the API has changedView Change Details