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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@drovp/encode

v7.0.0

Published

Encode video, audio, and images into common formats.

Downloads

56

Readme

@drovp/encode

Drovp plugin for encoding video, audio, and images into common formats with optional editing and or concatenation support.

Creates Drovp profiles into which you can drop any media files (video, image, and audio) and have them encoded into desired formats.

Uses ffmpeg and sharp under the hood.

Features

  • Media editor to instruct the encoder how to edit the output. Supports cropping, cutting, concatenating, rotation, flipping, ... Can be spawned on drop by drop basis with editor modifier, or configured to always appear for current profile.
  • All configuration is designed to be agnostic to the resolution/type/size of the input files.
  • Resizing by setting size limits, or max desired megapixels, or both.
  • Ability to skip encoding of files that are already compressed enough with Skip thresholds.
  • Optionally discard inefficient encodes that didn't compress the file enough.

Supported codecs/formats

Input files can be anything ffmpeg or sharp recognize, which is pretty much anything.

Currently supported output codecs/formats are:

  • Video: H.264 (mp4/mkv), H.265 (mp4/mkv), VP8 (webm/mp4/mkv), VP9 (webm/mp4/mkv), AV1 (webm/mp4/mkv), GIF (gif)
    • With Opus or Vorbis for audio track
  • Images: jpg (mozjpeg), webp, avif, png
  • Audio: mp3, ogg (Opus), flac, wav

NOTE: Animated GIFs are treated as video, while GIFs with only 1 frame as images.

Resizing

Built in powerful output dimension controls:

  • resize based on a single dimension constraint (other dimension will be calculated to maintain aspect ratio)
  • fill, cover, contain, inside, and outside modes when both dimension constraints are defined
  • resize to fit a desired number of megapixels

All options above can be combined, encode will calculate output dimensions to ensure they are all satisfied, with max megapixels limit having priority over dimension limits.

Skip threshold

An ability to configure data density threshold to skip encoding of files that are already compressed enough. Speeds up jobs where you need to compress huge amounts of files of unknown compression.

Threshold is configured by setting relative data density units per each item type:

  • Video: bytes per pixel per second
  • Audio: bytes per channel per second
  • Image: bytes per pixel

Min savings recovery

When you've configured encode to replace original files, you can use Min savings to ensure the file savings are significant enough to warrant the loss of quality due to re-encode. When the output is not at least a configured percent smaller than the original, it'll be automatically discarded and original kept in place.

Advanced

You can see exactly the ffmpeg parameters used in each operation's log section, or check the src/lib/{video|image|audio}.ts files to see how they're constructed. If you see something that is not optimal, or have any ideas how to improve things, create an issue!.