cast player API提供3种流式传输协议(Hls,Dash,SmoothStreaming),如果我们的媒体不使用任何这些并使用渐进式下载,我们如何将我们的主机与更新的CORS头合并到我们的像我们使用三种流媒体协议之一的媒体播放器
protocol = cast.player.api.CreateSmoothStreamingProtocol(host);
window.player = new cast.player.api.Player(host);
window.player.load(protocol);
谢谢!