跳转到主要内容
PATCH
/
multistream
/
target
/
{id}
TypeScript
import { Livepeer } from "livepeer";

const livepeer = new Livepeer({
  apiKey: "<YOUR_BEARER_TOKEN_HERE>",
});

async function run() {
  const result = await livepeer.multistream.update({
    url: "rtmps://live.my-service.tv/channel/secretKey",
  }, "<id>");

  // Handle the result
  console.log(result);
}

run();
{
  "errors": [
    [
      "id not provided",
      "Account not found"
    ]
  ]
}

更新多流目标

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

路径参数

id
string
必填

ID of the multistream target

请求体

application/json
name
string
url
string<uri>

Livepeer-compatible multistream target URL (RTMP(S) or SRT)

Pattern: ^(srt|rtmps?)://
示例:

"rtmps://live.my-service.tv/channel/secretKey"

disabled
boolean

If true then this multistream target will not be used for pushing even if it is configured in a stream object.

响应

Success

Last modified on March 1, 2026