Smart tag job completed

更新时间:
复制 MD 格式

This topic describes the AIVideoTagComplete event, its notification content, and a callback example.

Event type

AIVideoTagComplete

Event description

The AIVideoTagComplete event is generated when a smart tag job completes.

Note The AIVideoTagComplete event corresponds to the Video AI Processing Completed event in the ApsaraVideo VOD console.

Event content

ParameterTypeRequiredDescription
EventTimeStringYesThe time the event occurred. The time is in UTC and uses the yyyy-MM-ddTHH:mm:ssZ format.
EventTypeStringYesThe event type. This is a required parameter. The value is fixed as AIVideoTagComplete.
JobIdStringYesThe job ID. This ID is the same as the JobId that is returned by the SubmitSmarttagJob operation.
MediaIdStringYesThe video ID.
StatusStringYesThe status of the job.
  • success: The operation was successful.
  • fail: The operation failed.
CodeStringNoThe error code. This field is returned if the job fails.
MessageStringNoThe error message. This field is returned if the job fails.
DataStringYesThe result data of the smart tag job, which is a JSON object. For more information about the structure, see Smart tags.

Callback example

The following is a callback example:

  • For an HTTP callback, the following content is the HTTP POST body.
  • For an MNS callback, the following content is the message body.
{
    "EventTime": "2017-03-20T07:49:17Z",
    "EventType": "AIVideoTagComplete",
    "JobId": "jd83k4184c0e47098a5b665e2aj3****",
    "MediaId": "sj83k40d92c641401fab46a0b842e9****",
    "Status": "success",
    "Code": "0",
    "Message": "OK",
    "Data": "{\"Keyword\":[{\"Times\":[\"3260\",\"4000\",\"5000\",\"8410\",\"10000\",\"12000\",\"13000\",\"14000\",\"15000\"],\"Tag\":\"Cushion\"},{\"Times\":[\"2000\",\"4000\",\"5000\",\"7000\",\"8000\",\"10000\",\"12000\",\"13000\",\"14000\"],\"Tag\":\"lancome\"},{\"Times\":[\"3260\",\"4000\",\"5000\",\"8410\",\"12000\",\"13000\",\"14000\"],\"Tag\":\"Lancome\"},{\"Times\":[\"4000\",\"5000\",\"12000\",\"13000\",\"14000\",\"15000\"],\"Tag\":\"CC cream\"},{\"Times\":[\"8000\",\"8410\",\"10000\"],\"Tag\":\"Light\"},{\"Times\":[\"3260\",\"8410\"],\"Tag\":\"cc cream\"},{\"Times\":[\"3260\"],\"Tag\":\"Petal\"},{\"Times\":[\"8410\"],\"Tag\":\"Air\"},{\"Times\":[\"900\"],\"Tag\":\"Bright\"},{\"Times\":[\"900\"],\"Tag\":\"Clear\"},{\"Times\":[\"900\"],\"Tag\":\"Skin\"},{\"Times\":[\"8410\"],\"Tag\":\"French Lancome\"}],\"Person\":[{\"Times\":[\"10760\"],\"Tag\":\"Zhang San\",\"FaceUrl\":\"http://example.com/aivideotag/11111B65-1955-4B84-823D-7921A742****/Index_00016.jpg\"}],\"Location\":[{\"Times\":[\"8410\"],\"Tag\":\"Asia\"}]}"
}