Transcode Status
Returns the current status of the transcoding service.
Request
| Property | Value |
|---|---|
| Method | GET |
| URL | /api/transcode/status |
| Content-Type | application/json |
| Authentication | Bearer Token |
Request
curl -X GET "{BASE_URL}/api/transcode/status" \
-H "Authorization: Bearer YOUR_TOKEN"
Response Body
Transcode Status
| Parameter | Type | Description |
|---|---|---|
data.isEnabled | boolean | Indicates if transcoding is enabled |
data.isActive | boolean | Indicates if transcoding service is active |
data.ffmpegPath | string | Path to the ffmpeg executable |
data.activeTasks | integer | Number of currently running transcode tasks |
data.activeTaskLimit | string | Maximum number of concurrent transcode tasks |
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": {
"isEnabled": true,
"isActive": true,
"ffmpegPath": "ffmpeg",
"activeTasks": 2,
"activeTaskLimit": "5"
},
"meta": {
"executionTime": 0,
"generatedAt": 1765791021616
}
}
Error Response (4xx/5xx)
| Parameter | Type | Description |
|---|---|---|
message | string | Human-readable error message |
{
"message": "Error message"
}
Support Needed?
Create a free ticket and our support team will provide you necessary assistance.