Functional Description
Initiate the task of detecting the beat rhythm points of audio
Request
plain
POST /task/create/detectBeat
Content-Type: application/jsonjson
{
"url":"https://xxxxxx.com/xxxx.mp4"
}| Field | Type | Description | Required |
|---|---|---|---|
| url | string | The URL of the audio or video to detect | Yes |
Response
response body
json
{
"code": 0,
"msg": "success",
"data": {
"taskId": "ea496f25ee544f7aba9e9edc089424ad"
}
}| Field | Type | Description | Required |
|---|---|---|---|
| code | int | Status code, 0 is success, all others are failure | Yes |
| msg | string | Status information | Yes |
| data | object | Returned data body | Yes |
| taskId | string | Task id | Yes |