The cast player API provides 3 ways of streaming protocol(Hls, Dash, SmoothStreaming), if our media does not use any of these and uses progressive download, how can we incorporate our host has the updated CORS header into our media player like we would using one of the three streaming protocols,
protocol = cast.player.api.CreateSmoothStreamingProtocol(host);
window.player = new cast.player.api.Player(host);
window.player.load(protocol);
Thanks!