Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making screenshots of videos with HTML5 canvas, the video is hosted elsewhere, everything works except toDataURL() because the canvas is dirty. So, I am wondering, is there any way I can save this canvas image on the computer?

I assume the answer is no but hoping for some hack to get this done, well any idea apart from downloading the video to my server and serving it from there...

share|improve this question

2 Answers

up vote 0 down vote accepted

The short answer is "No."

The longer answer might be yes.

Maybe your server can download the video and host it, then play it from your same domain?

If you control the server that is hosting the video you could enable cors.

(Or you could combine the two and have the video uploaded to a cors-enabled site that is not your own.)

Otherwise, you're out of luck.

share|improve this answer
thanks, and too bad, but it makes sense. – iwek Mar 5 '12 at 17:29

What about, I haven't tried it yet, if you redraw the original canvas on another canvas which you then save to an image. (and use css or position the canvases over each other to "hide" the second canvas).

Will the second canvas be dirty?

(thinking about a technique like thisone)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.