Socket
Socket
Sign inDemoInstall

@drovp/encode

Package Overview
Dependencies
30
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @drovp/encode

Encode video, audio, and images into common formats.


Version published
Maintainers
1
Created

Readme

Source

@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!.

Keywords

FAQs

Last updated on 05 Dec 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc