我正在使用 //developers.google.com/cast/docs/reference/player/ 0.5 版
我正在尝试在 chromecast 设备上使用平滑流。
获取清单时,服务器会进行重定向(带有 Location 标头的 http 302)
例如从 //example.com/one/manifest.ism/Manifest 到 //example.com/two/manifest.ism/Manifest
在来自第二个 url 的清单中,存在 url 属性: Url="QualityLevels({bitrate})/Fragments(video={start time})
显然,这个 url 被播放器解释为相对于原始 url (/one) 而不是重定向的 url (/two)
我查看了流畅流清单的规范(//www.bogotobogo.com/VideoStreaming/Files/iis8/MS-SSTR.pdf),但没有说明清单中的这个 url 应该如何解释。
我希望它应该是相对于最后获取的 url 的位置(相对于 /two/)而不是(相对于 /one/)
任何人都知道这是否是来自谷歌的媒体播放器库(//developers.google.com/cast/docs/reference/player/)中的问题或预期行为?
谢谢!