Get Media Player Manifest
GET/live/:streamKey.json
Retrieve the media player manifest including various formats and encodings.
Generate JWTRequest
Path Parameters
The unique key identifying the stream.
Query Parameters
Optional access token for authorization.
Responses
- 200
- 404
- 500
Successful response with media manifest
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Array [
]
Array [
]
URL to the manifest itself
formats
object
mp4-hls
object
URL to the HLS manifest
Video codec used
Audio codec used
encodings
object[]
Video width in pixels
Video height in pixels
Video bitrate in Kbps
Audio bitrate in Kbps
Video presentation timestamp
Audio presentation timestamp
Timestamp when the data was collected
URL to the specific encoding
jpeg
object
encodings
object[]
Image width in pixels
Image height in pixels
URL to the JPEG image
webrtc
object
origin
object
Access token for WebRTC
Resource identifier
URL to the WebRTC call join endpoint
Unique call identifier
Peer identifier
Public key associated with the stream
WebSocket URI for WebRTC connection
HTTP URI for WebRTC connection
Region of the WebRTC server
Version of the WebRTC protocol
turn
object
servers
object[]
Username for TURN server authentication
Credential for TURN server authentication
Type of credential (e.g., password)
Assigned transcode region
Assigned origin region
Assigned order region
Replication status
Information about the client encoder
{
"self": "string",
"formats": {
"mp4-hls": {
"manifest": "string",
"videoCodec": "string",
"audioCodec": "string",
"encodings": [
{
"videoWidth": 0,
"videoHeight": 0,
"videoKbps": 0,
"audioKbps": 0,
"videoPts": 0,
"audioPts": 0,
"collected": 0,
"location": "string"
}
]
},
"jpeg": {
"encodings": [
{
"videoWidth": 0,
"videoHeight": 0,
"location": "string"
}
]
},
"webrtc": {
"origin": {
"token": "string",
"rsrc": "string",
"location": "string",
"callId": "string",
"peerId": "string",
"streamNames": [
"string"
],
"publicKey": "string",
"uri": "string",
"httpUri": "string",
"region": "string",
"version": 0,
"turn": {
"servers": [
{
"urls": [
"string"
],
"username": "string",
"credential": "string",
"credentialType": "string"
}
]
}
}
}
},
"atr": "string",
"aor": "string",
"abr": "string",
"rep": true,
"clientEncoder": "string"
}
Not Found - The specified stream key is offline.
Internal Server Error - A server error occurred.