i'm already can upload mutiple images to canvas and drag and drop the images. now i need to drag and drop the video that the users upload. note the users can be able of have images and video at same time.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You have to first load the video (wait its readyState to be 4). Then you can, as frequently as you want, draw its content on your canvas as if it was any image :
When I do that I usually have a loop to draw the image every 20 ms and an handler on mousemove which calls my canvas drawing function if one of the movable objects moved. |
|||||||
|