嵌入的 Youtube 视频会减慢速度
我正在创建一个包含大量嵌入式 Youtube 视频的网站,但视频播放器似乎需要一段时间才能加载。有什么办法可以加快速度吗?
如果这是不可能的,那么如何仅嵌入缩略图并在用户单击缩略图时加载视频?
I'm creating a site with a lot of embedded Youtube videos, but it seems the video players take a while to load. Is there a way I could speed things up?
If this is not possible, then how do you embed just the thumbnails and load the videos when a user clicks on the thumbnail?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于你的第一个问题:
你无法控制加载速度,因为视频不是托管在你的服务器上,而是托管在 Youtube 的服务器上。
关于你的第二个问题:
你可以检查这个地址,以了解如何从 youtube 视频中提取缩略图: http://www.reelseo.com/youtube-thumbnail-image/
之后,您可以使用 Ajax 在 onclick 上加载 YouTube 视频,或者简单地重定向到视频所在的单独页面。
About your first question:
You cannot control the load speed because the videos are not hosted on your server but on Youtube's one.
About your second question:
You can check this address in order to find out how to extract the thumbnails from the youtube videos: http://www.reelseo.com/youtube-thumbnail-image/
After that you can load the youtube video on onclick using Ajax or simple redirect to a separate page where video is positioned.