我购买了一个 IPTV 经销商帐户,我得到了这样的链接:
#EXTM3U
#EXTINF:-1,CHANNEL NAME 1
http://X.X.X.X:15000/live/USERNAME/PASSWORD/13094.ts
#EXTINF:-1,CHANNEL NAME 2
http://X.X.X.X:15000/live/USERNAME/PASSWORD/13095.ts
etc...
现在,我想成为一个IPTV提供商,所以我提供的m3u播放列表文件应该是这样的:
#EXTM3U
#EXTINF:-1,CHANNEL NAME 1
http://example.com/viewchannel.php?username=User&password=test&channelid=13094
#EXTINF:-1,CHANNEL NAME 2
http://example.com/viewchannel.php?username=User&password=test&channelid=13095
etc...
我应该在 viewchannel.php 文件中写什么来直播 TS 文件?
所以http://example.com/viewchannel.php?username=User&password=test&channelid=13095必须重定向到http://XXXX:15000/live/USERNAME/PASSWORD/13095.ts并且它应该可以在播放器上播放.. .
我尝试像这样使用http://codesamplez.com/programming/php-html5-video-streaming-tutorial:
<?php
include("streamclass.php");
$filePath = "http://X.X.X.X:15000/live/USERNAME/PASSWORD/13094.ts";
$stream = new VideoStream($filePath);
$stream->start();
?>
但它不适用于来自 URL 的流式传输(或者它可能不适用于实时流式传输)。