我想将视频添加到网站中。我不需要帮助。但是为了改善加载时间,我想用纯php 检查用户的互联网速度,然后决定在互联网速度足够快的情况下立即加载视频,最多需要2秒钟下载该视频。否则我想显示一个图像,并让用户在已经显示页面的其余部分后加载视频。
为了让您知道hava看起来应该是什么样子:https://rocketlabusa.com/
我已经有了一些代码,只需要一些帮助即可获得网速。我可以自己开发其余部分。
谢谢!
这是我的代码:
<?php
define ( "urlToVideo", "someVideo.mp4" );
define ( "sizeOfMovieInBytes", filesize ( urlToVideo ) );
define ( "speedOfInternetConnectionInBytesPerSecond", 1 ); /* this is what I need */
if (sizeOfMovieInBytes / speedOfInternetConnectionInBytesPerSecond > 2) { // if it takes more than 2 Seconds to load the movie
/*
* a image should be shown and a play button for enabling the user to load the video after the rest of the website has loaded
*/
} else { // if it takes 2 seconds or less
/*
* the video should be loaded immediately and the image and played immediately
*/
}
?>