GithubHelp home page GithubHelp logo

id3-cli's Introduction

id3-cli

npm

CLI tool for batch editing ID3 tags of multiple MP3 files

  • Batch fix garbled characters (non-UTF8 encoding) in old mp3 files
  • Batch editing of meta information such as album name and artist
  • Batch reassign track numbers from 1 to sequential numbers.

Install

npm install id3-cli-batch

CLI Usage

Usage: id3 <pattern> [...options]

Arguments:
  pattern: A glob pattern to specify the target file

ID3 options:
  --title           song title (TIT2)
  --artist          song artists (TPE1)
  --album           album title (TALB)
  --track           song number in album (TRCK)
  --genre           song genres (TCON)
  --picture         attached picture (APIC)
  --increment-track set a sequential number from 1 to the songs you specified. The order is ascending by file name

Output options: either one is required
  --overwrite       overwrite the original file
  --out-dir         output files to the specified directory

Other options:
  --help            show this help

Convert ID3 tags into UTF8

If no options are passed, the original value will be kept.

id3 'path/to/*' --overwrite

Change album name and artists

--artist can take multiple values

id3 'path/to/*' --album 'Name' --artist 'Artist1' --artist 'Artist2' --out-dir path/to/out

Set cover image

id3 'path/to/*' --picture 'path/to/image.jpg' --out-dir path/to/out

Node.js API

const { transformByPattern } = require('id3-cli-batch')

const options = {
  album: '...',
  artist: ['...'],
  genre: '...',
  incrementTrack: true,
  outDir: '/path/to/out',
  picture: '/path/to/picture.jpg',
  title: '...',
  track: 1,
}
transformByPattern('/path/to/audio/**/*', options)
  .then((outPaths) => console.log(outPaths))
  .catch((e) => {
    console.error(e)
  })

License

This package is under MIT license.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.