Is it currently possible to create a flash free live webcam chat with HTML5? If so, how can I go about doing this?
相关问题
- Should I wait for Flash Player 10.1 or go with Fla
- How to load flex swf from flash?
- Countdown to the end of the HTML5 video
- Python function to read video and convert to frame
- Thumbnails from the Vimeo website harder than YouT
相关文章
- HTML5 control
- How to create a MediaClip from RenderTargetBitmap
- Safari blocks play() on video despite being called
- Streaming music synchronously from a mp3 file via
- Why MPMoviePlayerController fullscreen button icon
- Skip UIImagePickerController Preview View?
- Stop playing video in iframe when modal is closed
- Issues in executing FFmpeg command in Java code in
Pure HTML5 isn't quite there. Until then you can check out a few services that make this process much easier to deal with than setting up Flash Media Servers:
http://cameratag.com
http://framey.com
http://framebase.com
This is now possible in Chrome and Opera: filtering a webcam using getUserMedia and HTML5 canvas and will also soon be in Firefox (
getUserMedia
is currently in Firefox Nightly).Purely with HTML5, it's just not going to happen right now.
That said, you could theoretically do it without a flash bridge, but there'd be some requirements. As it is, there are some command-line utilities for Mac OS that capture images from the iSight camera and upload them to a web server. Grabbing the images, and optionally sound, you could redraw to a canvas element a few times a second for a low-grade camera. I won't begin to guess about pushing audio. Use an AJAX stream to maintain the connection, and continuously push the new images to the canvas as they're uploaded.
The real question becomes this: Is it worth it? According to Adobe1, you might as well use a flash bridge. Unless, of course, you're intending iOS compatibility, which is a whole other ballgame on it's own.
no
It is in the html5 draft
http://www.whatwg.org/specs/web-apps/current-work/complete/video-conferencing-and-peer-to-peer-communication.html#obtaining-local-multimedia-content
here is a much deeper conversion about this issue
What's the status of the HTML 5 <video> tag and webcam integration?
and here is a solution that works using flash
http://code.google.com/p/jpegcam/