Coder Social home page Coder Social logo

primaapriansyah / say-cheese Goto Github PK

View Code? Open in Web Editor NEW

This project forked from leemeichin/say-cheese

0.0 0.0 0.0 237 KB

Minimal javascript library for integrating a webcam and snapshots into your app.

Home Page: http://leemachin.github.com/say-cheese

License: MIT License

say-cheese's Introduction

Say Cheese!

A minimal library for integrating webcam snapshots into your app. It uses getUserMedia, a recent API for accessing audio and video in the browser.

Demo

Setup

Grab the JS, host it, and add it to your page. For example:

<script src='/assets/js/say-cheese.js'></script>

Note about jQuery

Previously, jQuery was used to handle the events Say Cheese triggers. This has been removed so as to remove the dependency on external code.

If you've used earlier versions of SayCheese, or link to it direct from the repo, be aware that triggered events are no longer passed an event object as the first argument.

Usage

Say Cheese exposes a minimal, event based API:

var sayCheese = new SayCheese('#container-element', { snapshots: true });

sayCheese.on('start', function() {
 // do something when started
 this.takeSnapshot();
});

sayCheese.on('error', function(error) {
 // handle errors, such as when a user denies the request to use the webcam,
 // or when the getUserMedia API isn't supported
});

sayCheese.on('snapshot', function(snapshot) {
  // do something with a snapshot canvas element, when taken
});

sayCheese.start();

Taking snapshots

You can take a snapshot at any time after initialisation, by calling takeSnapshot():

sayCheese.on('snapshot', function(snapshot) {
  // do something with the snapshot
});

sayCheese.takeSnapshot();

I don't want snapshots; just give me the video!

No problem. Just disable it when you first create the instance:

var sayCheese = new SayCheese('#container-element', { snapshots: false });

Note that when you do this, takeSnapshot() will not do anything.

Stopping the show

There's also a function to stop the webcam after loading it up:

sayCheese.on('stop', function() {
  // do something when it's stopped
});

sayCheese.stop();

Audio support

getUserMedia also allows you to use your mic, so you can turn audio on if you need it like this:

var sayCheese = new SayCheese('#container-element', { audio: true });

This might be useful if you're using Say Cheese for the unified browser support, and not just taking pictures.

Resources, things using Say Cheese, etc.

getUserMedia on the server, with Sinatra and Say Cheese

If you have any useful resources, or things you did with Say Cheese that you think should be shown off, by all means open a pull request or an issue or whatever.

Tests

Some basic tests cover the callback functionality. They were written to be run in a browser that supports the getUserMedia API. Due to the nature of that API, there is no automation for allowing or denying the request, so it has to be done manually for each one.

Compatibility

Tested and verified to work in:

  • Firefox Nightly, Aurora, Beta
  • Google Chrome
  • Opera

Firefox caveats

  • The beta release of Firefox supports a lower resolution compared to Opera and Chrome. This has been improved in Aurora and Nightly and may hopefully work its way into stable in the next version or two.

License

Copyright (C) 2012 Lee Machin

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

say-cheese's People

Contributors

olivernn 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.