Video API, gRPC: VideoService.GetManifests
Retrieves the manifest URLs for a specific video.
Manifests are used by video players to access the video content with adaptive bitrate streaming.
Supports different manifest types (HLS, DASH) and configuration parameters.
gRPC request
rpc GetManifests (GetVideoManifestsRequest) returns (GetVideoManifestsResponse)
GetVideoManifestsRequest
{
"video_id": "string"
}
|
Field |
Description |
|
video_id |
string Required field. ID of the video for which to retrieve manifest URLs. The maximum string length in characters is 50. |
GetVideoManifestsResponse
{
"manifests": [
{
"url": "string",
"type": "ManifestType"
}
]
}
|
Field |
Description |
|
manifests[] |
List of manifests available for the video. |
Manifest
Represents a streaming manifest file that defines how video content is delivered.
Manifests contain information about available video qualities, audio tracks,
and other metadata needed by video players to stream content efficiently.
|
Field |
Description |
|
url |
string URL where the manifest file can be accessed. |
|
type |
enum ManifestType Format of the manifest file.
|