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

@calme1709/id3-js

v1.0.5

Published

A library for reading and writing ID3 data.

Downloads

3

Readme

ID3-JS

A library for reading and writing ID3 data.

How to use


First install the package

npm install --save @calme1709/id3-js

And then include the package in your code

import ID3JS from "@calme1709/id3-js";

or

const ID3JS = require("@calme1709/id3-js");

You can then proceed to use the library in your project

Writing ID3 data

Writing ID3 data replaces all the existing data with the data that is passed to the method. If you only want to replace the defined data and leave the rest as it is, use the update method.

Write to a file
import ID3JS from "@calme1709/id3-js";

ID3JS.write("./song.mp3", {
    title: "Song",
    artist: "Artist"
});
Write to a buffer
import fs from "fs";
import ID3JS from "@calme1709/id3-js";

let buffer = fs.readFileSync("./song.mp3");

buffer = ID3JS.write(buffer, {
    title: "Song",
    artist: "Artist"
});
Reading ID3 data

Read from a file
import ID3JS from "@calme1709/id3-js";

ID3JS.read("./song.mp3");
Read from a buffer
import fs from "fs";
import ID3JS from "@calme1709/id3-js";

const buffer = fs.readFileSync("./song.mp3");

ID3JS.read(buffer);
Updating ID3 data

Updating ID3 data only affects those properties which are defined in the new information, the existing data that will not be overwritten is left unaffected.

Update a file
import ID3JS from "@calme1709/id3-js";

ID3JS.update("./song.mp3", {
    title: "Song",
    artist: "Artist"
});
Update a buffer
import fs from "fs";
import ID3JS from "@calme1709/id3-js";

let buffer = fs.readFileSync("./song.mp3");

buffer = ID3JS.update(buffer, {
    title: "Song",
    artist: "Artist"
});
Removing ID3 data

Remove data from a file
import ID3JS from "@calme1709/id3-js";

ID3JS.remove("./song.mp3");
Remove data from a buffer
import fs from "fs";
import ID3JS from "@calme1709/id3-js";

let buffer = fs.readFileSync("./song.mp3");

buffer = ID3JS.remove(buffer);

Methods


write()

Writes the specified information to either the file at the passed path, or the passed buffer. Overwrites all information currently in the file, if you want to leave non defined information unaffected use the update method.

Overloads

|Call|Description|Return| |---|---|---| | write(string, IFrames) | Writes the information passed to the file at the passed path, overwriting any existing data. Returns nothing. | undefined | | write(buffer, IFrames) | Writes the information passed to the passed buffer and returns it. | Buffer |

read()

Reads the ID3 information from the file at the passed path, or from the passed buffer.

Overloads

|Call|Description|Return| |---|---|---| | read(string) | Reads the data from the file at the passed path and returns it. | IFrames | | read(buffer) | Reads the data from the passed buffer and returns it. | IFrames |

update()

Writes the specified information to either the file at the passed path, or the passed buffer. Leaves all information that is not defined untouched.

Overloads

|Call|Description|Return| |---|---|---| | update(string, IFrames) | Writes the information passed to the file at the passed path. Returns nothing. | undefined | | update(buffer, IFrames) | Writes the information passed to the passed buffer and returns it. | Buffer |

remove()

Removes all ID3 data from either the file at the passed path, or the passed buffer.

Overloads

|Call|Description|Return| |---|---|---| | remove(string) | Removes all ID3 data from the file at the passed path. | undefined | | remove(buffer) | Removes all ID3 data from the passed buffer and returns it. | Buffer |

Supported properties


Information in ID3 can be either of two types; either a standard text frame, or a special frame. Below is all of the properties that can be set, to make the usage of this library easier, all properties have been mapped to aliases, however the raw names will be supported in a future update.

Text Properties

  • album
  • bpm
  • composer
  • genre
  • copyright
  • date
  • playlistDelay
  • encodedBy
  • textWriter
  • fileType
  • time
  • contentGroup
  • title
  • subtitle
  • initialKey
  • language
  • length
  • mediaType
  • originalTitle
  • originalFilename
  • originalTextwriter
  • originalArtist
  • originalYear
  • fileOwner
  • artist
  • performerInfo
  • conductor
  • remixArtist
  • partOfSet
  • publisher
  • trackNumber
  • recordingDates
  • internetRadioName
  • internetRadioOwner
  • size
  • ISRC
  • encodingTechnology
  • year

Special Properties

There are four special properties supported, these are below with their types.

  • comment: {     text: string;     language: string;     shortText: string; }

  • image: Buffer

  • unsynchronisedLyrics: {     text: string;     language: string;     shortText: string; }

  • userDefinedText {     description: string;     value: string; }