Simple Vue Camera
A simple to use, but extensive, camera component for Vue 3 with Typescript support to create great camera experiences like this:
By default, this component does not render any UI elements on top of the video feed, so you can style it and make it your own.
Installation
Install Simple Vue Camera with NPM:
npm install simple-vue-camera
or, with Yarn:
yarn install simple-vue-camera
After installation, you can register the Camera
component globally in main.ts
:
or, register it to a specific component:
Usage
Basics
After registering the Camera
component, you can use it as follows:
Use the available slot to overlay UI on top of the video feed:
Snapshots
To create screenshots of the video feed, use the snapshot
function on the component reference:
By default, when creating a snapshot, the resolution of the snapshot will be the same as the resolution of the camera feed. To change that, pass a Resolution
with the function call:
Or change the image type and quality:
Camera
It is possible to change the camera. First request all videoinput
devices:
Pick a device, e.g. with a dropdown, and pass the device ID to the changeCamera
function:
Note: When switching cameras, the camera component will restart and emit the loading
and started
events again.
Component information
Properties
Name | Type | Default | Description |
---|---|---|---|
resolution | Resolution |
1920 x 1080 | The resolution of the camera view |
facingMode | string |
environment | |
autoplay | boolean |
true |
Determines if the camera is automatically started when mounted, when set to false, you must start the camera programmatically |
constraints | MediaStreamConstraints |
Change the default constraints |
Functions
Name | Parameters | Description |
---|---|---|
devices | kinds: MediaDeviceKind[] |
Returns a list of compatible devices which matches the allowed kinds |
start | Starts the camera | |
stop | Stops the camera | |
pause | Pauses the video stream | |
resume | Resumes the video stream | |
changeCamera | deviceID: string |
Changes the selected camera |
snapshot | resolution: Resolution , type: string , quality: number |
Creates a snapshot of the current video image |
Events
The Camera
component emits 7 different events.
Name | Parameters | Description |
---|---|---|
loading | Emitted when the camera is loading | |
started | Emitted when the camera is loaded and is visible | |
stopped | Emitted when the camera has stopped | |
paused | Emitted when the video has paused | |
resumed | Emitted when the video has resumed | |
camera-change | deviceID: string |
Emitted when a camera change occurs |
snapshot | blob: Blob |
Emitted when a snapshot is taken |
Licence
simple-vue-camera is available under the MIT licence. See the LICENCE for more info.