Reputation: 11332
I have been reading up on the draft Device APIs and am wondering whether there are any implementations of the Media Capture API.
Ericsson seem to have some demos up, however haven't released the source. There's also a bug report on Chromium.
I don't mind whether implementation takes the form of a:
...so long as it allows experimenting against the interface as is thus far suggested in the standard.
Upvotes: 13
Views: 5053
Reputation: 4611
The Media Capture API is no longer being worked on — it was split into two specifications: Media Capture and Streams (aka getUserMedia) and HTML Media Capture. Support, as of May 2013, is:
getUserMedia
Source: http://caniuse.com/#feat=stream
HTML Media Capture
Source: lots of searching and testing
Upvotes: 3
Reputation: 28767
A WebRTC committer wrote that the «device element has gone the way of dodo»:
http://code.google.com/p/chromium/issues/detail?id=55377#c10
So a better alternative seems to be the WhatWG getUserMedia:
and specifically
Upvotes: 3
Reputation: 13406
Microsoft recently (June 2011) announced that they have released a prototype for IE 9 that implements the audio portion of the HTML Media Capture spec. You can read the announcement and download the prototype for experimentation from here:
Upvotes: 4
Reputation: 460
Android 3.0 implements the HTML Media Capture specification (a draft version).
Upvotes: 8