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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ilhanozkan/jumpcutter

v1.0.0

Published

A Node.js package for processing videos and audio files by handling silent sections

Readme

JumpCutter

A Node.js package for processing videos and audio files by handling silent sections. You can either remove silent parts or speed them up.

What is the Jump Cut Technique?

The jump cut is a film editing technique where a section of time is removed from a shot, creating a sudden transition. This effect is commonly used in vlogs, interviews, and fast-paced content to eliminate pauses, enhance engagement, and maintain viewer attention.

Jump cuts are widely used in video publishing platforms to make videos more dynamic and concise. For more information, you can check:

JumpCutter applies a skip-cutting technique to quiet sections in videos below a set audio dB threshold:

  • Removing them (mode: 'remove')
  • Speeding them up (mode: 'speed')

This makes it easier to create fast-paced, engaging videos without manual editing.

Installation

npm install @ilhanozkan/jumpcutter

Usage

1. Import and Initialize

First, import JumpCutter and create an instance with custom settings:

const JumpCutter = require('@ilhanozkan/jumpcutter');

// Create a new instance
const cutter = new JumpCutter({
    silenceThreshold: -30, // dB threshold for silence detection
    minSilenceDuration: 0.5, // minimum silence duration in seconds
});

2. Process a Video File

Process video directly to a file

You can process a video file and save the result to a new file:

// Process video directly to a file
await cutter.process({
    input: 'input.mp4',
    output: 'output.mp4',
    mode: 'remove' // or 'speed' to make silent parts faster
});

Process video to buffer

If you want to process the video without saving it to a file, you can get the result as a Buffer:

// Process video to buffer (returns a Buffer)
const videoBuffer = await cutter.processToBuffer({
    input: 'input.mp4',
    mode: 'remove', // or 'speed' to make silent parts faster
    outputFormat: 'mp4' // optional, defaults to 'mp4'
});

Options

  • silenceThreshold: Threshold in dB for silence detection (default: -30)
  • minSilenceDuration: Minimum duration of silence to process in seconds (default: 0.5)
  • mode: 'remove' to delete silent parts, 'speed' to make them faster
  • speedFactor: Speed multiplier for silent parts when using 'speed' mode (default: 2)

Requirements

  • Node.js 14 or higher
  • FFmpeg (included via ffmpeg-static)

MIT License

Copyright (c) 2025 Ilhan Ozkan

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.