admin管理员组文章数量:1339470
I have an issue getting screenshots of videos in Chrome, and I've exhausted all the internets and all Stackoverflow answers on it; no luck.
No matter what I try, when I try to use the canvas
element to take a screenshot of a video that is on a different domain, or even just a different port, then I end up with a Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported.
error.
Here is my setup:
Web app URL
.html
CDN URLs (I've tried both)
:8181/somevideo.mp4
.mp4
Headers sent back with MP4 from CDN:
Accept-Ranges:bytes
Access-Control-Allow-Origin:*
Access-Control-Expose-Headers:x-ms-request-id,Server,x-ms-version,Content-Type,Last-Modified,ETag,x-ms-lease-status,x-ms-lease-state,x-ms-blob-type,Accept-Ranges,Content-Length,Date,Transfer-Encoding
Content-Length:5253832
Content-Range:bytes 48-5253879/5253880
Content-Type:video/mp4
Date:Sat, 06 Feb 2016 17:24:05 GMT
ETag:"0x8D32E3EDB17EC00"
Last-Modified:Fri, 05 Feb 2016 15:13:08 GMT
Server:Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-blob-type:BlockBlob
x-ms-lease-state:available
x-ms-lease-status:unlocked
x-ms-request-id:88d3aaef-0629-4316-995f-021aa0153c32
x-ms-version:2015-04-05
I have:
- Added
crossOrigin="anonymous"
to the video element, but this just makes the video fail to load altogether - Tried even the same domain on a different port (as above)
- Ensured that
Access-Control-Allow-Origin
is ing back with*
(as above) - I don't believe it is DRM as the screenshot works fine if I copy the exact same video file to the web app and load it locally
- Run through all answers to this question, but this is for images not videos anyway and the answers only describe all the previous points
Yet, still the blasted error.
Edit
Added code:
var getScreenshotDataUrl = function(video, canvas, type) {
type = type || "image/jpeg";
var context = canvas.getContext("2d");
var w = video.videoWidth;
var h = video.videoHeight;
canvas.width = w;
canvas.height = h;
context.fillRect(0, 0, w, h);
context.drawImage(video, 0, 0, w, h);
video.crossorigin = "anonymous";// makes no difference
return canvas.toDataURL(type);
}
Please help.
I have an issue getting screenshots of videos in Chrome, and I've exhausted all the internets and all Stackoverflow answers on it; no luck.
No matter what I try, when I try to use the canvas
element to take a screenshot of a video that is on a different domain, or even just a different port, then I end up with a Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported.
error.
Here is my setup:
Web app URL
http://client.myapp./home.html
CDN URLs (I've tried both)
http://client.myapp.:8181/somevideo.mp4
http://cdn.myapp./somevideo.mp4
Headers sent back with MP4 from CDN:
Accept-Ranges:bytes
Access-Control-Allow-Origin:*
Access-Control-Expose-Headers:x-ms-request-id,Server,x-ms-version,Content-Type,Last-Modified,ETag,x-ms-lease-status,x-ms-lease-state,x-ms-blob-type,Accept-Ranges,Content-Length,Date,Transfer-Encoding
Content-Length:5253832
Content-Range:bytes 48-5253879/5253880
Content-Type:video/mp4
Date:Sat, 06 Feb 2016 17:24:05 GMT
ETag:"0x8D32E3EDB17EC00"
Last-Modified:Fri, 05 Feb 2016 15:13:08 GMT
Server:Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0
x-ms-blob-type:BlockBlob
x-ms-lease-state:available
x-ms-lease-status:unlocked
x-ms-request-id:88d3aaef-0629-4316-995f-021aa0153c32
x-ms-version:2015-04-05
I have:
- Added
crossOrigin="anonymous"
to the video element, but this just makes the video fail to load altogether - Tried even the same domain on a different port (as above)
- Ensured that
Access-Control-Allow-Origin
is ing back with*
(as above) - I don't believe it is DRM as the screenshot works fine if I copy the exact same video file to the web app and load it locally
- Run through all answers to this question, but this is for images not videos anyway and the answers only describe all the previous points
Yet, still the blasted error.
Edit
Added code:
var getScreenshotDataUrl = function(video, canvas, type) {
type = type || "image/jpeg";
var context = canvas.getContext("2d");
var w = video.videoWidth;
var h = video.videoHeight;
canvas.width = w;
canvas.height = h;
context.fillRect(0, 0, w, h);
context.drawImage(video, 0, 0, w, h);
video.crossorigin = "anonymous";// makes no difference
return canvas.toDataURL(type);
}
Please help.
Share Improve this question edited May 23, 2017 at 11:45 CommunityBot 11 silver badge asked Feb 6, 2016 at 17:39 joshleyjoshley 28.8k25 gold badges115 silver badges151 bronze badges 4- 1 Could you please post your code here not a link here. – Binvention Commented Feb 6, 2016 at 17:53
- Try looking at this resource developer.mozilla/en-US/docs/Web/HTML/CORS_enabled_image – Binvention Commented Feb 6, 2016 at 17:56
- @Binvention I've added the code. It works non-CORS. – joshley Commented Feb 6, 2016 at 18:02
- What about the env=IS_CORS in the header for the picture? – Binvention Commented Feb 6, 2016 at 18:04
1 Answer
Reset to default 18I have answered my own question.
What a horrible headache I now have.
The problem lies somewhere in the nuanced specification of the HTML5 video crossorigin/CORS specification.
I only tested in Chrome and Edge, but here is what you need to know at the time of writing:
Chrome
Loading your HTML5 video will fail if you have crossOrigin
set, but your video is being served from any port other than 80 and is not using https
:
THIS WILL FAIL
Client at http://www.myapp./player.html:
<video crossOrigin="anonymous" src="http://cdn.myapp.:81/video.mp4"></video>
THIS WILL SUCCEED
Client at http://www.myapp./player.html:
<video crossOrigin="anonymous" src="https://cdn.myapp.:81/video.mp4"></video>
Chrome and Edge
getImageData()
and toDataURL()
will be security blocked unless:
- crossorigin is set to
anonymous
oruse-credentials
(as defined here) before the video is loaded. If you do this too late, it will still fail.
All
Finally, if you are going to set crossOrigin
in javascript, be sure to use the correct casing for the javascript property: crossOrigin
(NOT crossorigin
)
I have written this up in a little more detail in my blog.
本文标签: javascriptHTML5 video screenshot via canvas using CORSStack Overflow
版权声明:本文标题:javascript - HTML5 video screenshot via canvas using CORS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743586441a2506505.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论