Giter Club home page Giter Club logo

getusermedia.js's Introduction

getUserMedia.js!

getUserMedia.js is a cross-browser shim for the getUserMedia() API (a part of WebRTC) that supports accessing a local camera device from inside the browser. Where WebRTC support is detected, it will use the browsers native getUserMedia() implementation, otherwise a Flash fallback will be loaded instead.

Releases

Download getUserMedia.js 1.0RC2 for the latest stable, which includes examples. Alternatively, clone this repo to get the latest edge version.

Screenshot

Screenshot

New In Version 1.x

Support for the Firefox nightlies

getUserMedia.js now supports the WebRTC implementation in the Firefox nightlies (hidden under a boolean). This means we're compatible with all modern browsers, using their getUserMedia implementations where possible and falling back to Flash where necessary.

firefox!

One-time permission requests

In previous versions, we created a getUserMedia() instance to check for feature support, then created a seperate instance for usage. This caused permissions to use a device to be requested twice. In 1.x, we simply re-use the original instance so we require minimal action from the user.

bars!

Support for a new noFallback option

As more and more browsers begin landing stable implementations of getUserMedia, you may wish to have the option to turn off our Flash fallback feature/ This can now easily be done by passing noFallback: true in our options. Check out face-detection-demo/js/demo.js for where to place this. Alternatively, feel free to use lib/getUserMedia.noFallback.js for a version of the library with Flash support stripped out.

Compatibility with the latest implementations

object!

Since our last release there have been minor changes to a few implementations, such as Chrome switching to accepting an object rather than a string for configuration back in May. Although we've been applying these changes in edge fairly quickly, the latest stable now includes all such updates.

Getting Started

As you can see in the demo, what the shim provides is more than enough to create interactive applications that can relay device pixel information on to other HTML5 elements such as the canvas. By relaying, you can easily achieve tasks like capturing images which can be saved, applying filters to the data, or as shown in the demo, even perform tasks like facial detection.

The shim currently works in all modern browsers and IE8+.

##Walkthough

Getting the shim working is fairly straight - forward, but you may be interested in checking out the sample application in face-detection-demo/demo.html for further information. First, include thegetusermedia.jsscript in your page. Below we're using the minified version built by the grunt.js build process.

<script src="dist/getUserMedia.min.js"> </script>

Next, define mark-up that we can use as a container for the video stream. Below you'll notice that a simple div has been opted for (as per our demo). What will happen when we initialize the shim with it is we will either inject a video tag for use (if WebRTC is enabled) or alternatively an object tag if the Flash fallback needs to be loaded instead. Whilst most modern browsers will support the video tag, there is no reason to be using it here if your only interest is relaying the video data for further processing or use elsewhere.

<div id="webcam"></div > 

Calling the shim is as simple as: getUserMedia(options, success, error); whereoptionsis an object containing configuration data, successis a callback executed when the stream is successfully streaming anderroris a callback for catching stream or device errors.

We use the configuration object(options in the above) to specify details such as the element to be used as a container, (e.gwebcam), the quality of the fallback image stream(85) and a number of additional callbacks that can be further used to trigger behaviour. Callbacks beginning withon in the below example is a Flash - fallback specific callback.If you don 't need to use it, feel free to exclude it from your code.

// options contains the configuration information for the shim
// it allows us to specify the width and height of the video
// output we're working with, the location of the fallback swf,
// events that are triggered onCapture and onSave (for the fallback)
// and so on.
var options = {

	"audio": true,
	"video": true,

	// the element (by id) you wish to use for 
	// displaying the stream from a camera
	el: "webcam",

	extern: null,
	append: true,

	// height and width of the output stream
	// container

	width: 320,
	height: 240,

	// the recommended mode to be used is 
	// 'callback ' where a callback is executed 
	// once data is available
	mode: "callback",

	// the flash fallback Url
	swffile: "fallback/jscam_canvas_only.swf",

	// quality of the fallback stream
	quality: 85,

	// a debugger callback is available if needed
	debug: function () {},

	// callback for capturing the fallback stream
	onCapture: function () {
		window.webcam.save();
	},

	// callback for saving the stream, useful for
	// relaying data further.
	onSave: function (data) {},
	onLoad: function () {}
};

Below is a sample success callback taken from the demo application, where we update the video tag we've injected with the stream data.Note that it 's also possible to capture stream errors by executing calls from within video.onerror() in the example.

		success: function (stream) {
			if (App.options.context === 'webrtc') {

				var video = App.options.videoEl;
				var vendorURL = window.URL || window.webkitURL;
				video.src = vendorURL ? vendorURL.createObjectURL(stream) : stream;

				video.onerror = function () {
					stream.stop();
					streamError();
				};

			} else {
				//flash context
			}
		}

At present the error callback for getUserMedia() is fairly simple and should be used to inform the user that either WebRTC or Flash were not present or an error was experienced detecting a local device for use.

There are also a number of other interesting snippets in demo.js, such as getSnapshot() for capturing snapshots:

		getSnapshot: function () {
			// If the current context is WebRTC/getUserMedia (something
			// passed back from the shim to avoid doing further feature
			// detection), we handle getting video/images for our canvas 
			// from our HTML5 <video> element.
			if (App.options.context === 'webrtc') {
				var video = document.getElementsByTagName('video')[0]; 
				App.canvas.width = video.videoWidth;
				App.canvas.height = video.videoHeight;
				App.canvas.getContext('2d').drawImage(video, 0, 0);

			// Otherwise, if the context is Flash, we ask the shim to
			// directly call window.webcam, where our shim is located
			// and ask it to capture for us.
			} else if(App.options.context === 'flash'){
				window.webcam.capture();
				App.changeFilter();
			}
			else{
				alert('No context was supplied to getSnapshot()');
			}
		}

##Performance

The shim has been tested on both single-frame captures and live video captures. As expected, native getUserMedia() works absolutely fine when pushing video content to canvas for real-time manipulation. The fallback works fine for single-frame, but as live frame manipulation requires capturing a frame from Flash and mapping it onto canvas every N milliseconds, an observable 'stutter' may be experienced here. I'm working on ways to optimize this further, but for now, as long as you aren't doing anything too intensive, the shim should work fine for a number of use cases.

##Credits

  • getUserMedia() shim, demos: Addy Osmani
  • Workarounds for multi-bar issues, Firefox nightly support: Franz Enzenhofer
  • Flash webcam access implementation: Robert Eisele
  • Glasses positoning and filters for demo: Wes Bos

##Browsers

getUserMedia() is natively supported in Chrome 21, Opera 12 and Firefox nightly (using the following setup).

##Spec references

License

Copyright (c) 2012 addyosmani
Licensed under the MIT license.

getusermedia.js's People

Contributors

addyosmani avatar pablocubico avatar franzenzenhofer avatar giles-v avatar sillevl avatar wong2 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.