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.

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);
const {
loadVideo,
} = await initializeVideoViewer(
instance,
'---- Insert commercial license key here after purchase ----',
);
const videoUrl = './video.mp4';
loadVideo(videoUrl);
const customContainer =
instance.iframeWindow.document.querySelector('.custom-container');
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.