@douglassllc/videojs-framebyframe

1.1.1 • Public • Published

videojs-framebyframe

npm version License

Allows users to step frame-by-frame through a video.

This has to make an unfortunate assumption about framerate, but it should be "ok" for general use. If you can run framerate detection on the server side, this plugin works perfectly for you.

Updates included in this Fork

  • Updated code causing warnings for deprecated methods .plugin -> .registerPlugin
  • Appends buttons after playToggle
  • Added .css to package

Installation

$ npm install @douglassllc/videojs-framebyframe

Usage

import 'videojs-framebyframe/videojs.framebyframe.js'
import 'videojs-framebyframe/videojs.framebyframe.css'

let options: {
  plugins: {
    framebyframe: {
      fps: 30,
      steps: [
        { text: '< 1f', step: -1 },
        { text: '1f >', step: 1 }
      ]
    }
  }
}

let player = videojs('my-video', options)

Framerate Issues

We have no easy way to calculate framerate in Javascript, so we make a guess. If you're serving the video yourself or otherwise can calculate the FPS value, then you should use that and supply it to your videojs instance.

Original Contributors

  • Helena Rasche (@erasche)
  • Miguel Grinberg (@miguelgrinberg)

License

Licensed under MIT

Package Sidebar

Install

npm i @douglassllc/videojs-framebyframe

Weekly Downloads

13

Version

1.1.1

License

MIT

Unpacked Size

46.2 kB

Total Files

13

Last publish

Collaborators

  • douglassllc