如果你已输入了在线媒体流,你可以对输入媒体流的 url 进行修改,输入新的媒体流。
你可以使用 UpdateRelayStream
这个 OpenAPI 实现这一功能。
你可以调用 UpdateRelayStream
接口,覆盖此前在 UpdateRelayStream
或 UpdateRelayStream
中设定的以下参数:
StreamUrl
MediaType
StreamMode
VideoWidth
VideoHeight
FrameRate
Bitrate
请求频率:QPS 不得超过 150。
下表仅列出该接口特有的请求参数和部分公共参数。更多信息请见公共参数。
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | UpdateRelayStream | 接口名称。当前 API 的名称为 UpdateRelayStream 。 |
Version | String | 是 | 2020-12-01 | 接口版本。当前 API 的版本为 2020-12-01 。 |
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
AppId | String | 是 | Your_AppId | 你的音视频应用的唯一标志 |
RoomId | String | 是 | Your_RoomId | 房间的 ID,是房间的唯一标志 |
TaskId | String | 是 | Your_TaskId | 任务 ID。你必须对每个任务设定 TaskId,且在进行任务更新和结束时也须使用该 TaskId。
[a-zA-Z0-9_@\-\.]{1,128} |
Control | Object | 是 | - | 控制选项 |
StreamUrl | String | 是 | rtmp://xxx | 在线流媒体地址。媒体格式应为:hls、rtmp、mp4、flv、dash、或 ts。如源流为海外,建议联系技术支持,以保障最佳体验。 |
MediaType | Integer | 否 | 0 | 媒体类型。
|
StreamMode | Integer | 否 | 0 | 流处理模式。
|
StartTimeStamp | Integer | 否 | 0 | 任务起始时间戳,用于定时播放,Unix时间,单位为秒。默认为 0 ,表示立即启动。此参数仅对 StartRelayStream 接口生效。 |
Loop | Boolean | 否 | False | 是否循环播放,仅对源流为点播流时生效。 |
VideoWidth | Integer | 否 | 640 | 视频宽度。转码时必填,单位为像素,范围为 [16, 1920],必须是偶数,值为奇数时自动调整为偶数。 |
VideoHeight | Integer | 否 | 480 | 视频高度,转码时必填。单位为像素,范围为 [16, 1920],必须是偶数,值为奇数时自动调整为偶数。 |
FrameRate | Integer | 否 | 15 | 发送帧率,值的范围为[1,30],默认值为 15 ,转码时生效。 |
Bitrate | Integer | 否 | 6000 | 最大发送码率,单位为 Kbps,不填则不限制,转码时生效。 |
本接口无特有的返回参数。公共返回参数请见返回结构。
其中返回值 Result
仅在请求成功时返回 ok
,失败时为空。
POST https://rtc.volcengineapi.com?Action=UpdateRelayStream&Version=2020-12-01 { "AppId": "Your_AppId", "RoomId": "Your_RoomId", "TaskId": "Your_TaskId", "Control" : { "StreamUrl": "rtmp://xxx", "MediaType": 0, "StreamMode": 0, "StartTimeStamp": 0, "Loop": false, "VideoWidth": 640, "VideoHeight": 480, "FrameRate": 15, "Bitrate": 6000 } }
{ "Result": "ok", "ResponseMetadata": { "RequestId": "Your_RequestId", "Action": "UpdateRelayStream", "Version": " 2020-12-01", "Service": "rtc", "Region": "cn-north-1" } }
您可访问公共错误码,获取更多错误码信息。