npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

videojs-silence-speedup

v1.1.8

Published

VideoJS plugin to speedup the video on given silences

Readme

Silence SpeedUp VideoJS plugin

VideoJS plugin that dynamically adjusts playback speed when silences are detected in the video. The actual silences timestamps must be given to the plugin. It allows you to either speed up or skip silences entirely, providing a smoother viewing experience.

Installation

Install via npm:

npm install videojs-silence-speedup

Or include it directly in your project:

<link rel="stylesheet" type="text/css" href="path/to/videojs-silence-speedup/dist/videojs-silence-speedup.css">
<script src="path/to/videojs-silence-speedup/dist/videojs-silence-speedup.min.js"></script>

Usage

To use the plugin, initialize it with Video.js:

const player = videojs('my-video', {
  plugins: {
    silenceSpeedUp: {
      silenceSpeed: 8,
      playbackSpeed: 1,
      skipSilences: false,
      displayRealRemainingTime: true
    }
  }
});

Plugin Options

The plugin supports the following options:

  • silenceSpeed (number): Defines the playback speed during silences. Default is 8.
  • playbackSpeed (number): Defines the normal playback speed. Default is 1.
  • timestamps (Array<{t_start: number, t_end: number}>): An array of objects defining silence start and end times. Default is an empty array.
  • skipSilences (boolean): If true, silences will be automatically skipped instead of sped up. Default is false.
  • displayRealRemainingTime (boolean): If true, updates the remaining time display to reflect adjusted playback speed. Default is true.

Events

The plugin emits the following event:

  • silence-skipped: Triggered when a silence is skipped by the player.

Example:

player.on('silence-skipped', (event) => {
  console.log('Skipped to:', player.currentTime());
});

Available Methods

The following methods are available to control the plugin:

  • isInSilence(): boolean – Returns true if the player is currently in a silence segment.
  • getCurrent(): {t_start: number, t_end: number} | undefined – Returns the current silence object, or undefined if not in silence.
  • skipCurrentSilence(): void – Skips the current silence segment.
  • setPlaybackSpeed(rate: number): void – Updates the normal playback speed (range: 0.2 to 20).
  • getPlaybackSpeed(): number – Returns the current normal playback speed.
  • setSilenceSpeed(rate: number): void – Updates the silence playback speed (range: 0.2 to 20).
  • getSilenceSpeed(): number – Returns the current silence playback speed.
  • setSilenceTimestamps(timestamps: Array<{t_start: number, t_end: number}>): void – Updates the silence timestamps.
  • getSilenceTimestamps(): Array<{t_start: number, t_end: number}> – Returns the list of silence timestamps.

Example Implementation

player.setSilenceTimestamps([
  { t_start: 10, t_end: 15 },
  { t_start: 30, t_end: 35 }
]);
player.setSilenceSpeed(8);
player.setPlaybackSpeed(1.2);

License

This plugin is open-source and distributed under the ISC License.