im using easelJS for a HTML5 project
the problem is that i have put a video element which is loading and playing fine
when i try to add it to a EaselJS stage using
var v = document.getElementById('StartingVideo');
var vBmp = new _.Bitmap(v);
stage.addChild(vBmp);
v.play()
it works fine in ie9 and the video is played but not in chrome.
in chrome the actual video in the video element plays fine but nothing is displayed in the canvas
I ended up putting a video overlay on top of the canvas.