我在 XBMC/kodi 中播放重定向的 .m3u8 流时遇到问题。我有以下 php 脚本,我这样称呼它:
http://www.MyWebsite.com/getStream.php?channel=12
如果我在 kodi/xbmc 中使用上面的链接,它永远不会播放它!谁能告诉我如何解决这个问题并允许 xbmc/kodi 播放像上面这样的链接?我应该添加额外的标题吗?
<?
//rest of code that gets the actual stream url
$a="http://someRemoteWebsite.com/hls/stream12.m3u8?token=234324213243";
header("Location: " . $a);
?>