gpt4 book ai didi

java - 如何通过 YouTube 直播 API 更改我的 Activity 使用的流?

转载 作者:行者123 更新时间:2023-12-02 09:33:04 28 4
gpt4 key购买 nike

所以我一直在寻找一种从 YouTube 获取 16 位流名称的方法,我终于通过这行代码找到了它是如何实现的 ->

streamName = returnedStream.getCdn().getIngestionInfo().getStreamName();

流名称只是一个字符串

如果我尝试使用 .setStreamName();,它不会更改流名称。我尝试给出我之前创建的流的值,但保持不变。

如果我尝试使用.setStreamName();,它不会更改流名称。我尝试给出我之前创建的流的值,但保持不变。我尝试这样做->

returnedStream.getCdn().getIngestionInfo().setStreamName(title); 

但仍然不起作用。

最佳答案

直播与使用 liveBroadcasts/bind 的流关联。方法。

就 Java API 而言,它看起来像这样:

YouTube yt = ...         // your reference to YouTube
String broadcastId = ... // your broadcast Id

String newStreamId = ... // identifier of stream you want to bind
String apiKEy = ... // your API key

// you can define other response parts if you want more or don't want some of these
String responseParts = "id,status,contentDetails.boundStreamId";

yt.liveBroadcasts().bind(broadcastId, responseParts)
.setApiKey(apiKey)
.setStreamId(streamId)
// other data you might want in request
.execute()

API 引用:

关于java - 如何通过 YouTube 直播 API 更改我的 Activity 使用的流?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57785543/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com