New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@pdftron/webviewer-video

Package Overview
Dependencies
Maintainers
1
Versions
200
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pdftron/webviewer-video

This is an addon for WebViewer that allows loading HTML5 videos (.mp4, ogg, webm) so that their video frames can be annotated.

  • 3.0.2
  • npm
  • Socket score

Version published
Weekly downloads
6.4K
decreased by-4.21%
Maintainers
1
Weekly downloads
 
Created
Source

WebViewer Video

WebViewer is a powerful JavaScript-based PDF Library that's part of the PDFTron PDF SDK. It allows you to view and annotate PDF files on your web app with a fully customizable UI.

This is an addon for WebViewer that allows loading HTML5 videos (.mp4, ogg, webm) so that their video frames can be annotated. For more information, see this guide.

WebViewer

Also, try out the react sample here. It shows how to integrate WebViewer and WebViewer-Video with a server component for the saving of annotations.

Initial setup

Before you begin, make sure your development environment includes Node.js and npm.

Install

npm install @pdftron/webviewer-video

How to use

Here is an example of how WebViewer and WebViewer-video could be integrated into your application.

import React, { useRef, useEffect } from 'react';
import ReactDOM from 'react-dom';
import WebViewer from '@pdftron/webviewer';
import { initializeVideoViewer, Controls } from '@pdftron/webviewer-video';

const App = () => {
    const viewer = useRef(null);

    useEffect(() => {
        WebViewer({
            path: 'lib',
            css: 'styles.css',
            disabledElements: [
                'searchButton',
                'pageNavOverlay',
                'viewControlsButton',
                'panToolButton',
            ],
        }, document.getElementById('viewer'))
            .then(async(instance) => {
                setInstance(instance);
                // Extends WebViewer to allow loading HTML5 videos (.mp4, ogg, webm).
                const {
                    loadVideo,
                } = await initializeVideoViewer(
                    instance,
                    '---- Insert commercial license key here after purchase ----',
                );

                // Load a video at a specific url. Can be a local or public link
                // If local it needs to be relative to lib/ui/index.html.
                // Or at the root. (eg '/video.mp4')
                const videoUrl = './video.mp4';
                loadVideo(videoUrl);

                const customContainer =
                    instance.iframeWindow.document.querySelector('.custom-container');

                // Inject the video Controls into WebViewer
                ReactDOM.render(
                    <Controls
                        instance={instance}
                    />,
                    customContainer,
                );
            });
    }, []);

    return (
        <div className="App">
            <div className="webviewer" ref={viewer} />
        </div>
    );
}

Also see the React sample, for a complete solution, with further customizations.

Documentation

See the docs folder provided in the package.

License

WebViewer Video will run in trial mode until a license is provided. For more information on licensing, please visit our website.

Keywords

FAQs

Package last updated on 27 Sep 2020

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc