我已经创建了基本的CAF Receiver应用程序,并通过将实时流设置为BUFFERED并添加了两个小时的时间来解决其缺少Live功能的问题。
在使用最新的v3 / cast_receiver_framework.js更新CAF接收器之后,此操作将不再起作用。
因此,我将status.media.streamType设置为“ LIVE”,但现在查找功能已消失。搜索栏上没有要拖动的圆圈。有什么方法可以在直播中启用此功能吗?
我的代码基本上就是这个atm
<html>
<head>
<script type="text/javascript"
src="//www.gstatic.com/cast/sdk/libs/caf_receiver/v3/cast_receiver_framework.js">
</script>
</head>
<body>
<cast-media-player></cast-media-player>
<script>
cast.framework.CastReceiverContext.getInstance().start();
</script>
</body>
</html>