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

thumbnails-webvtt

v0.0.4

Published

Module for creating video thumbnails with WebVTT file as descriptor

Downloads

14

Readme

Video thumbnails + WebVTT using Node.js

Thumbnails generator module. Uses WebVTT as thumbnails descriptor. Can pack thumbnails into spritesheet using node-sprit module.

Installation

npm install thumbnails-webvtt --save

Requirements

Example

'use strict'

var thumbgen = require('thumbnails-webvtt')

thumbgen('/media/Hammer.of.the.Gods.2013.BluRay.720p.mkv', {
  output:          '/vtt/Hammer.of.the.Gods.2013.BluRay.720p.vtt',
  size:            {
    width: 480
  },
  numThumbnails:   6,
  spritesheet:     true
}, function(err, metadata) {
  if (err) {
    throw err
  }
  
  console.dir(metadata)
})

will print

[ { path: '/Hammer.of.the.Gods.2013.BluRay.720p/thumbnails.png#xywh=0,808,480,200',
    from: '00:00:00.000',
    to: '00:14:49.474' },
  { path: '/Hammer.of.the.Gods.2013.BluRay.720p/thumbnails.png#xywh=0,0,480,200',
    from: '00:14:49.474',
    to: '00:29:38.947' },
  { path: '/Hammer.of.the.Gods.2013.BluRay.720p/thumbnails.png#xywh=0,202,480,200',
    from: '00:29:38.947',
    to: '00:44:28.421' },
  { path: '/Hammer.of.the.Gods.2013.BluRay.720p/thumbnails.png#xywh=0,404,480,200',
    from: '00:44:28.421',
    to: '00:59:17.894' },
  { path: '/Hammer.of.the.Gods.2013.BluRay.720p/thumbnails.png#xywh=0,606,480,200',
    from: '00:59:17.894',
    to: '01:14:07.368' },
  { path: '/Hammer.of.the.Gods.2013.BluRay.720p/thumbnails.png#xywh=0,1010,480,200',
    from: '01:14:07.368',
    to: '01:38:49.824' } ]

API

thumbgen(source, options, callback)

Create thumbnails (and optionally pack them into spritesheet) and create WebVTT file for file(s). Options are described below

Options

  • output defaults to "SOURCE_DIR/SOURCE_BASENAME.vtt"

    • WebVTT filename
  • assetsDirectory defaults to "SOURCE_BASENAME"

    • Name of folder which keeps thumbnails or spritesheet.
  • size defaults to null

    • Size of generated thumbnails. If not specified original video stream width and height will be used. If only width or height is specified other will be computed according to source video ratio.
  • size.width defaults to SOURCE_WIDTH

    • Read above
  • size.height defaults to SOURCE_HEIGHT

    • Read above
  • timemarks defaults to null

    • Array with timemarks in seconds. E.g. ['123.123', '345.345']
  • numThumbnails defaults to 0

    • Number of thumbnails to generate. Used in opposite to timemarks. Each thumbnail moment is calculated as source_duration * 0.9 / numThumbnails.
  • secondsPerThumbnail defaults to 0

    • If specified thumbnails will be generated each secondsPerThumbnail seconds.
  • framesPerThumbnail defaults to 0

    • If specified thumbnails will be generated each framesPerThumbnail frames.
  • spritesheet defaults to false

    • Generate spritesheet or not.
  • spriteSheetName defaults to "thumbnails"

    • Spritesheet file name
  • spriteSheetOptions default to null

    • Spritesheet options passed to node-sprite .sprite() function.

TODO

  • Use cool spritesheet generator
  • Tests
  • Use some kind of WebVTT generator?