Socket
Socket
Sign inDemoInstall

cube-dynamsoft-camera-enhancer

Package Overview
Dependencies
0
Maintainers
2
Versions
440
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

cube-dynamsoft-camera-enhancer


Version published
Weekly downloads
19
Maintainers
2
Created
Weekly downloads
 

Readme

Source

Dynamsoft Camera Enhancer for Your Website

Allow your website to easily control cameras on desktop and mobile devices.

Once integrated, your users can open your website in a browser, access their cameras to stream live video and acquire realtime frames.

In this guide, you will learn step by step on how to integrate this library into your website.

Getting Started

Include the library

Use a CDN

The simplest way to include the library is to use either the jsDelivr or UNPKG CDN.

  • jsDelivr
  <script src="https://cdn.jsdelivr.net/npm/dynamsoft-camera-enhancer@2.0.0/dist/dce.js"></script>
  • UNPKG
  <script src="https://unpkg.com/dynamsoft-camera-enhancer@2.0.0/dist/dce.js"></script>

Besides using the CDN, you can also download the library and host its files on your own website / server before including it in your application.

The following shows a few ways to download the library.

$ yarn add dynamsoft-camera-enhancer
  • npm
$ npm install dynamsoft-camera-enhancer --save

Depending on how you downloaded the library and where you put it. You can typically include it like this:

<script src="/DCE-JS-2.0.0/dist/dce.js"></script>

or

<script src="/node_modules/dynamsoft-camera-enhancer/dist/dce.js"></script>

Read more on how to host the library.

Interact with the library

Create a CameraEnhancer object

To use the library, we first create a CameraEnhancer object.

 let enhancer = null;
 try {
     let pEnhancer = null;
     (async () => {
         enhancer = await (pEnhancer = pEnhancer || Dynamsoft.DCE.CameraEnhancer.createInstance());
     })();
 } catch (ex) {
     console.error(ex);
 }
Configure the CameraEnhancer object

As shown in the code snippet below, we just need to specify where the UI should be created before opening the video stream. If opened without this customization, a full-page-size UI element will be created over the current page.

<!-- Define an element to hold the UI element -->
<div id="enhancerUIContainer"></div>
<script>
    let pEnhancer = null;
    (async () => {
        let enhancer = await (pEnhancer = pEnhancer || Dynamsoft.DCE.CameraEnhancer.createInstance());
        document.getElementById("enhancerUIContainer").appendChild(enhancer.getUIElement());
        await enhancer.open();
    })();
</script>
Customize the UI

The built-in UI of the CameraEnhancer object is defined in the file dist/dce.ui.html . There are a few ways to customize it:

  • Modify the file dist/dce.ui.html directly.

    This option is only possible when you host this file on your own web server instead of using a CDN.

  • Copy the file dist/dce.ui.html to your application, modify it and use the the API defaultUIElementURL to set it as the default UI.

Dynamsoft.DCE.CameraEnhancer.defaultUIElementURL = "THE-URL-TO-THE-FILE";

You must set defaultUIElementURL before you call createInstance() .

  • Append the default UI element to your page, customize it before showing it.
<div id="enhancerUIContainer"></div>
<script>
    document.getElementById('enhancerUIContainer').appendChild(enhancer.getUIElement());
</script>
  • Build the UI element into your own web page and specify it with the API setUIElement(HTMLElement).

    • Embed the video
<div id="div-video-container">
    <video class="dce-video" playsinline="true" style="width:100%;height:100%;position:absolute;left:0;top:0;"></video>
</div>
<script>
    let pEnhancer = null;
    (async () => {
        let enhancer = await (pEnhancer = pEnhancer || Dynamsoft.DCE.CameraEnhancer.createInstance());
        await enhancer.setUIElement(document.getElementById('div-video-container'));
        await enhancer.open();
    })();
</script>

The video element must have the class dce-video .

  • Add the camera list and resolution list If the class names for these lists match the default ones, dce-sel-camera and dce-sel-resolution , the library will automatically populate the lists and handle the camera/resolution switching.
<select class="dce-sel-camera"></select>
<select class="dce-sel-resolution"></select>

By default, only 3 hard-coded resolutions (1920 x 1080, 1280 x 720 640 x 480),are populated as options. You can show a custom set of options by hardcoding them.

<select class="dce-sel-resolution">
    <option class="dce-opt-gotResolution" value="got"></option>
    <option data-width="1280" data-height="720">1280 x 720</option>
    <option data-width="800" data-height="600">800 x 600</option>
    <option data-width="640" data-height="480">640 x 480</option>
</select>

Generally, you need to provide a resolution that the camera supports. However, in case a camera does not support the specified resolution, it usually uses the nearest supported resolution. As a result, the selected resolution may not be the actual resolution used. In this case, add an option with the class name dce-opt-gotResolution (as shown above) and the library will then use it to show the actual resolution.

Hosting the library

Step One: Deploy the dist folder

Once you have downloaded the library, you can locate the "dist" directory and copy it to your server (usually as part of your website / web application). The following shows some of the files in this directory:

  • dce.js // The main library file
  • dce.browser.mjs // For using the library as a module (<script type="module">)
  • dce.ui.html // Defines the default enhancer UI

Step Two: Configure the Server

  • Enable HTTPS

    To use the library, you must access your website / web application via a secure HTTPS connection. This is due to browser security restrictions which only grant camera video streaming access to a secure context.

    For convenience, self-signed certificates are allowed during development and testing.

Step Three: Include the library from the server

Now that the library is hosted on your server, you can include it accordingly.

<script src="https://www.yourwebsite.com/dynamsoft-camera-enhancer/dist/dce.js"></script>

FAQ

Can I open the web page directly from the hard drive?

Yes, for simple testing purposes, it's perfectly fine to open the file directly from the hard drive. However, you might encounter some issues in doing so (like unable to access the camera, etc.). The recommendation is to deploy this page to your web server and run it over HTTPS. If you don't have a ready-to-use web server but have a package manager like npm or yarn, you can set up a simple HTTP server in minutes. Check out http-server on npm or yarn.

Why can't I use my camera?

If you open the web page as file:/// or http:// , the camera may not work and you see the following error in the browser console:

[Deprecation] getUserMedia() no longer works on insecure origins. To use this feature, you should consider switching your application to a secure origin, such as HTTPS. See https://goo.gl/rStTGz for more details.

  • In Safari 12 the equivalent error is:

Trying to call getUserMedia from an insecure document.

You get this error because the API getUserMedia requires HTTPS to access the camera.

  • If you use Chrome or Firefox, you might not get the error because these two browsers allow camera access via file:/// and http://localhost.

To make sure your web application can access the camera, please configure your web server to support HTTPS. The following links may help.

FAQs

Last updated on 19 Oct 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc