Transcode Task Log
Returns the log output from a specific transcoding task.
Request
| Property | Value |
|---|---|
| Method | GET |
| URL | /api/transcode/task/{taskId}/log |
| Content-Type | application/json |
| Authentication | Bearer Token |
Request
curl -X GET "{BASE_URL}/api/transcode/task/{taskId}/log" \
-H "Authorization: Bearer YOUR_TOKEN"
Path Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
taskId | string | Yes | Unique identifier of the task |
Request
curl -X GET "{BASE_URL}/api/transcode/task/{taskId}/log" \
-H "Authorization: Bearer YOUR_TOKEN"
Response Body
Log Data
| Parameter | Type | Description |
|---|---|---|
data.lastTimestamp | integer | Timestamp of the most recent log entry (Unix timestamp in ms) |
data.list | array | Array of log entries |
Log Entry Object
| Parameter | Type | Description |
|---|---|---|
data.list[].timestamp | integer | Log entry timestamp (Unix timestamp in ms) |
data.list[].message | string | Log output message |
Metadata
| Parameter | Type | Description |
|---|---|---|
meta.executionTime | integer | Request processing time in milliseconds |
meta.generatedAt | integer | Response generation timestamp (Unix timestamp in ms) |
Successful Response (200)
{
"data": {
"lastTimestamp": 1765793644848,
"list": [
{
"timestamp": 1765793644773,
"message": "frame=9208975 fps= 30 q=27.0 size=137431570kB time=85:16:06.40 bitrate=3667.6kbits/s dup=1849168 drop=0 speed= 1x "
},
{
"timestamp": 1765793644223,
"message": "frame=9208960 fps= 30 q=26.0 size=137431279kB time=85:16:05.86 bitrate=3667.6kbits/s dup=1849165 drop=0 speed= 1x "
},
{
"timestamp": 1765793643690,
"message": "frame=9208943 fps= 30 q=28.0 size=137430942kB time=85:16:05.33 bitrate=3667.6kbits/s dup=1849161 drop=0 speed= 1x "
}
]
},
"meta": {
"executionTime": 2,
"generatedAt": 1765793644850
}
}
Error Responses
Task Not Found (404)
| Parameter | Type | Description |
|---|---|---|
message | string | Human-readable error message |
{
"message": "Transcode Task Entity not found"
}
Support Needed?
Create a free ticket and our support team will provide you necessary assistance.