用PHP“readfile()”嵌入quicktime电影

时间:2012-09-12 20:24:20

标签: php embed quicktime readfile

https://stackoverflow.com/questions/11554068/embed-quicktime-movie-serve-data-from-php-script类似,我正在尝试嵌入“直接访问保护”的快速电影。 我正在使用.htaccess拒绝直接访问视频。 我尝试了多个电影嵌入选项,并使用旧式的“对象/嵌入”甚至不起作用。

这是嵌入代码(在HTML页面中):

<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="256" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="src" value="/displayVideo.php?video=/path/to/file.mov&type=video/quicktime">
<param name="qtsrc" value="/displayVideo.php?video=/path/to/file.mov&type=video/quicktime">
<param name="autoplay" value="true">
<param name="controller" value="true">
<embed src="/displayVideo.php?video=/path/to/file.mov&type=video/quicktime" qtsrc="/displayVideo.php?video=/path/to/file.mov&type=video/quicktime" width="320" height="256" autoplay="true" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/"></embed>
</object>

这是“displayVideo.php”文件:

    $file = '/path/to/root' . $_GET['video'];
    $type = $_get['type'];

    if(file_exists($file)){
        header('Content-type: ' .$type);    
        header('Content-length: ' . filesize($file));
        header('X-Pad: avoid browser bug');
        header('Cache-Control: no-cache');
        readfile($file);
    }else{
        header("HTTP/1.0 404 Not Found");
    }

问题是HTML页面显示“缺少插件”错误。

任何线索如何使用像这样的下载... php脚本正确嵌入quicktime?

0 个答案:

没有答案