Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

opendream/vue-web-cam

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-web-cam

npm npm Contributions welcome License

Webcam component for VueJs. See this for browser compatibility.

Installation

npm install vue-web-cam --save

yarn add vue-web-cam

Usage

import Vue from 'vue'
import WebCam from 'vue-web-cam'

Vue.use(WebCam)
// or
import {WebCam} from 'vue-web-cam'
Vue.component(WebCam.name, WebCam)

Testing & Dev

npm run dev

Props

prop type default notes
height number 500 height of video element
width number 500 width of video element
autoplay boolean true autoplay attribute
screenshotFormat string 'image/jpeg' format of screenshot
deviceId string null currently selected camera

Events

name param notes
started stream emitted once the stream has started
stopped stream emitted once the stream has stopped
error error emitted if the stream failed to start with the error returned
notsupported error emitted when the browser does not support this feature
cameras cameras emitted when a list of all cameras available is loaded
camera-change deviceId emitted when camera change occurs

Methods

name param notes
capture void Capture the current image through the webcam as base64 encoded string
changeCamera deviceId change the currently selected camera. Must pass in the device ID
start void Programatically Start the camera after stopping it (relies on deviceId prop passed to the component)
stop void Programatically stop the camera

License

MIT

Credits

This is based off @smronju vue-webcam and react-webcam

About

Webcam component for VueJs.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Vue 65.8%
  • JavaScript 17.8%
  • HTML 16.4%