是否有一种获取Chromecast接收器列表以供我的用户界面使用的好方法?
旧版CC API提供如下代码:(found here)
var cast_api = new cast.Api();
cast_api.addReceiverListener('APP ID', onReceiverList);
...
onReceiverList = function(list) {
if (list.length > 0) {
/* list of receiver identities available here */
}
}
但最近的api似乎缺少这个。 2015年初最好的方法是什么?
答案 0 :(得分:0)
Cast设备的发现由Cast Extension和该扩展程序提供的强制转换按钮处理。您可以在docs中详细了解相关信息。您也可以在GitHub repo上找到一些示例。