我正试图从YouTube缩略图中抓取调色板,以便更好地将YouTube视频与整个网站设计混合,我想知道是否有任何方法可以做到这一点?
我试过使用color-thief (https://github.com/lokesh/color-thief)和这个代码(没有运气):
var img = new Image();
img.onload = function () {
var colorThief = new ColorThief();
colorThief.getColor(img);
};
img.crossOrigin = 'Anonymous';
img.src = 'http://img.youtube.com/vi/NuEfvIca0XU/mqdefault.jpg
从这个我只是得到这个错误:
Image from origin 'http://img.youtube.com' has been blocked from loading by Cross-Origin Resource Sharing policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost' is therefore not allowed access
有没有办法绕过这个,或者抓住调色板而不下载缩略图的YouTube和保存在我的服务器上?
找到了一个解决方案,但它涉及通过http://cors-anywhere.herokuapp.com/传递imagelink
剩下的是:
var img = new Image();
img.onload = function () {
var colorThief = new ColorThief();
colorThief.getColor(img);
};
img.crossOrigin = 'Anonymous';
img.src = 'http://cors-anywhere.herokuapp.com/http://img.youtube.com/vi/'+id+'/mqdefault.jpg';
最好的办法是在服务器端实现,因为出于安全原因,大多数浏览器会自动禁用通过javascript从另一个域名获取内容。这就是为什么会有CSRF