Video API, gRPC: StreamLineService.Get
Returns the specific stream line.
gRPC request
rpc Get (GetStreamLineRequest) returns (StreamLine)
GetStreamLineRequest
{
"streamLineId": "string"
}
Field |
Description |
streamLineId |
string ID of the line. |
StreamLine
{
"id": "string",
"channelId": "string",
"title": "string",
"thumbnailId": "string",
// Includes only one of the fields `rtmpPush`, `srtPush`, `rtmpPull`, `srtPull`, `tcpPull`, `rtspPull`
"rtmpPush": {
"url": "string"
},
"srtPush": {
"url": "string"
},
"rtmpPull": {
"url": "string"
},
"srtPull": {
"url": "string"
},
"tcpPull": {
"url": "string"
},
"rtspPull": {
"url": "string"
},
// end of the list of possible fields
// Includes only one of the fields `manualLine`, `autoLine`
"manualLine": "ManualLine",
"autoLine": {
"status": "AutoLineStatus"
},
// end of the list of possible fields
"createdAt": "google.protobuf.Timestamp",
"updatedAt": "google.protobuf.Timestamp",
"labels": "string"
}
Entity that is responsible for the incoming video signal settings.
Field |
Description |
id |
string ID of the line. |
channelId |
string ID of the channel where the line was created. |
title |
string Line title. |
thumbnailId |
string ID of the thumbnail. |
rtmpPush |
RTMP push input type. Includes only one of the fields Video signal settings. |
srtPush |
SRT push input type. Includes only one of the fields Video signal settings. |
rtmpPull |
RTMP pull input type. Includes only one of the fields Video signal settings. |
srtPull |
SRT pull input type. Includes only one of the fields Video signal settings. |
tcpPull |
TCP pull input type. Includes only one of the fields Video signal settings. |
rtspPull |
RTSP pull input type. Includes only one of the fields Video signal settings. |
manualLine |
Manual control of stream. Includes only one of the fields Line type. |
autoLine |
Automatic control of stream. Includes only one of the fields Line type. |
createdAt |
Time when line was created. |
updatedAt |
Time of last line update. |
labels |
string Custom labels as |
RTMPPushInput
Field |
Description |
url |
string RTMP server url. |
SRTPushInput
Field |
Description |
url |
string SRT server url. |
RTMPPullInput
Field |
Description |
url |
string RTMP url for receiving video signal. |
SRTPullInput
Field |
Description |
url |
string SRT url for receiving video signal. |
TCPPullInput
Field |
Description |
url |
string TCP url for receiving video signal. |
RTSPPullInput
Field |
Description |
url |
string RTSP url for receiving video signal. |
ManualLine
Manual line type.
Field |
Description |
Empty |
AutoLine
Auto line type.
Field |
Description |
status |
enum AutoLineStatus Status of auto line.
|