有人可以让我知道我在这里失踪了吗?我想通过调用php脚本使用html5视频标签播放视频。我不想直接显示视频来源。
HTML文件:video.html
<video width="400" controls>
<source src="getVideo.php" type="video/mp4">
</video>
PHP文件:getVideo.php
<?php
$file_name = 'media/abc_video.mp4';
$file_size = (string)(filesize($file_name));
header('Content-Type: video/mp4');
header('Content-Length: '.$file_size);
readfile($file_name);
?>
html页面不加载视频,只加载空白视频播放器......
我可以直接播放视频,因此权限应该有效:
HTML文件:video.html
<video width="400" controls>
<source src="media/abc_video.mp4" type="video/mp4">
</video>
非常感谢,