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

@nuab/smpte.js

v1.1.1

Published

[![Build Status](https://travis-ci.com/fireworkweb/smpte.js.svg?branch=master)](https://travis-ci.com/fireworkweb/smpte.js) [![codecov](https://codecov.io/gh/fireworkweb/smpte.js/branch/master/graph/badge.svg)](https://codecov.io/gh/fireworkweb/smpte.js)

Downloads

100

Readme

smpte.js

Build Status codecov

Easily deal with Timecode SMPTE format in js. If you need a PHP lib, check out fireworkweb/smpte.php.

Installation

Using npm or yarn:

npm install smpte.js

yarn add smpte.js

Usage

Example

Using ES6 sintax:

import SMPTE from 'smpte.js';

SMPTE.defaults.frameRate = 29.97;
SMPTE.defaults.dropFrame = true;

let timecode = new SMPTE(1);
let timecodeToAdd = new SMPTE('00;00;00;02');
let anotherTimecodeToAdd = SMPTE.fromSeconds(1);

console.log(
    timecode
        .add(timecodeToAdd)
        .add(anotherTimecodeToAdd)
        .toString('00:00:00;00')
);
// 00:00:01;03

let invalidTm = new SMPTE('00:01:00:23', 24, true);
// Error: Only 29.97 frame rate has drop frame support

let invalidTm = new SMPTE('00:01:00:59', 60, false);
// Error: Frame rate not supported

let invalidTm = new SMPTE(-1440, 24, false);
// Error: Negative frames not supported

let invalidTm = new SMPTE('00:00:00:24', 24, false);
// Error: Invalid timecode

Object Instantiation

SMPTE objects can be instatianted from frame count, date object, seconds, timecode integer parts or directly from timecode string.

// Frame count
let tm = SMPTE.fromFrames(1440, 24, false);

// Date object
let tm = SMPTE.fromDate(Date.now(), 24, false);

// Seconds
let tm = SMPTE.fromSeconds(60, 24, false);

// Timecode integer parts
let tm = SMPTE.fromParts(0, 1, 0, 0, 24, false);

// Timecode string
let tm = SMPTE.fromTimecode('00:01:00:00', 24, false);

// or using the constructor
let tm = new SMPTE('00:01:00:00', 24, false);

Properties

SMPTE objects provide the following properties once an object is instantiated:

| Property | Type | get | set | Description | | ---------------------- | --------- | ------------------ | ------------------ | ---------------------------- | | frameCount | Number | :white_check_mark: | :white_check_mark: | Total number of frames | | hours | Number | :white_check_mark: | :white_check_mark: | Hours number | | minutes | Number | :white_check_mark: | :white_check_mark: | Minutes number | | seconds | Number | :white_check_mark: | :white_check_mark: | Seconds number | | frames | Number | :white_check_mark: | :white_check_mark: | Frames number | | durationInSeconds | Number | :white_check_mark: | :x: | Timecode duration in seconds | | attributes.df | Boolean | :white_check_mark: | :white_check_mark: | Global drop frame indicator | | attributes.frameRate | Number | :white_check_mark: | :white_check_mark: | Global Frame rate in FPS |

Methods

Each SMPTE object provides the following methods:

addFromSeconds(seconds)

Adds a number of seconds to the current timecode object.

  • seconds: Number indicating the seconds to be added.
  • return: Reference to the changed SMPTE object
Example:
let tc = SMPTE.fromSeconds(2, 24, false);
console.log(tc.addFromSeconds(2).toString())
// 00:00:04:00

subtractFromSeconds(seconds)

Substracts a timecode or a frame count from the current SMPTE object.

  • seconds: Number indicating the seconds to be subtracted.
  • return: Reference to the changed SMPTE object
Example:
let tc = SMPTE.fromSeconds(2, 24, false);
console.log(tc.subtractFromSeconds(2).toString())
// 00:00:00:00

add(time, operation = 1)

Adds a timecode or a frame count to the current SMPTE object.

  • time: Number|String|SMPTE indicating the value to be added.
  • operation: Number used to get the sign of the time.
  • return: Reference to the changed SMPTE object
Example:
let tc = SMPTE.fromTimecode('00:01:00:00', 24, false);
console.log(tc.add('00:00:30:00').toString())
// 00:01:30:00

subtract(time)

Substracts a timecode or a frame count from the current SMPTE object.

  • time: Number|String|SMPTE indicating the value to be subtracted.
  • return: Reference to the altered SMPTE object
Example:
let tc = SMPTE.fromTimecode('00:00:01:00', 24, false);
console.log(tc.subtract(4).toString())
// 00:00:00:20

toString(format = undefined)

Returns a string with the SMPTE timecode representation.

  • format: String mask to form the string.
  • return: Timecode string.
Example:
console.log(new SMPTE(48, 24, false).toString())
// 00:00:02:00

toDate()

Converts a SMPTE object to a date object.

  • return: Respective Date object.
console.log(new SMPTE(48, 24, false).toDate().getSeconds())
// 2

isTimecodeFormatValid(timecode, df) - static

Checks if a timecode string is in a valid format.

  • timecode: String to be evaluated.
  • df: Boolean indicating if is drop frame representation.
  • return: Boolean.
console.log(SMPTE.isTimecodeFormatValid('24:59:59:29', false));
// false
console.log(SMPTE.isTimecodeFormatValid('23:59:59:29', false));
// true

console.log(SMPTE.isTimecodeFormatValid('24:59:59:29', true));
// false
console.log(SMPTE.isTimecodeFormatValid('24:59:59;29', true));
// true

isValidTimecode(timecode, fr = defaults.frameRate, df = defaults.dropFrame) - static

Checks if a timecode is valid according to SMPTE standard.

  • timecode: String to be evaluated.
  • fr: Number indicating the frame rate.
  • df: Boolean indicating if is drop frame representation.
  • return: Boolean.
console.log(SMPTE.isValidTimecode('23:59:59:24', 24, false));
// false
console.log(SMPTE.isValidTimecode('23:59:59:23', 24, false));
// true

frameCountFromTimecode(timecode, fr = defaults.frameRate, df = defaults.dropFrame) - static

Gets the frame count given a timecode string.

  • timecode: String timecode.
  • fr: Number indicating the frame rate.
  • df: Boolean indicating if is drop frame representation.
  • return: Number.
console.log(SMPTE.frameCountFromTimecode('00:01:00;02', 29.97, true))
// 1800
console.log(SMPTE.frameCountFromTimecode('00:01:00:00', 29.97, false))
// 1800

isFramerateSupported(framerate) - static

Checks if a frame rate is supported.

  • framerate: Number indicating the frame rate.
  • return: Boolean.
console.log(SMPTE.isFramerateSupported(59.94))
// false
console.log(SMPTE.isFramerateSupported(25))
// true

Default values

You can easily change the default value accessing the static default object from the SMPTE class and change the frameRate or the dropFrame property.

import SMPTE from 'smpte.js';

SMPTE.defaults.frameRate = 29.97;
SMPTE.defaults.dropFrame = true;

Contributing

All contribution is welcome, please feel free to open tickets and pull requests.

License

MIT.