trieloff / html5flash

Converts HTML5 audio and video tags into Flash media players that can be controlled via Javascript, so that website authors can use the audio and video element right away without having to care about manually providing flash player fallbacks.
http://gettingsoftware.posterous.com/html5flash-using-html5-video-and-audio-right
Apache License 2.0
20 stars 2 forks source link

No getImageData function #2

Open mycroes opened 14 years ago

mycroes commented 14 years ago

HTML5 video elements have a getImageData function allowing retrieval of the image data using JavaScript. This data can be used to populate canvas image data, or create sensors in the video element. Currently no such function exists but it would be nice to have it as part of HTML5 compatibility.

trieloff commented 14 years ago

I see two ways of implementing this: overlaying a canvas on the flash video and grabbing the image data from the canvas or getting it directly from the flash video, but I am not sure if soundmanager supports it - or what it would take to support it.