2.9.6 • Published 8 years ago

taglib2 v2.9.6

Weekly downloads
229
License
-
Repository
github
Last release
8 years ago

SYNOPSIS

taglib version 2 bindings

BUILD STATUS

Build status

INSTALLATION

OSX/Linux

You need to have installed a proper C/C++ compiler toolchain, like GCC (For OSX please download Xcode and Command Line Tools)

Windows

You need to have Visual C++ Build Environment setup, which you can download as a standalone Visual C++ Build Tools package or get it as part of Visual Studio 2015.

USAGE

For example, with electron...

ELECTRON=1 npm install

WRITING TAGS

Note that track will overwrite tracknumber if specified in the same write.

const taglib = require('taglib2')
const mime = require('node-mime')
const fs = require('fs')

const props = {
  artist: 'Howlin\' Wolf',
  title: 'Evil is goin\' on',
  album: 'Smokestack Lightnin\'',
  comment: 'Chess Master Series',
  genre: 'blues',
  year: 1951,
  track: 3,
  tracknumber: '1/1',
  discnumber: '1/1',
  pictures: [
    {
      "mimetype": mime('./cover.jpg'),
      "picture": fs.readFileSync('./cover.jpg')
    } 
  ],
}

taglib.writeTagsSync('./file.mp3', props)

READING TAGS

const taglib = require('taglib2')
const tags = taglib.readTagsSync('./file.mp3')

OUTPUT

tags.pictures will be an array of buffers that contain image data.

{
  "artist": "Howlin' Wolf",
  "albumartist": "Howlin' Wolf",
  "title": "Evil is goin' on",
  "album": "Smokestack Lightnin'",
  "comment": "Chess Master Series",
  "composer": "Chester Burnett",
  "genre": "blues",
  "year": 1951,
  "track": 3,
  "tracknumber": "3/3",
  "discnumber": "1/1",
  "pictures": [
    {
      "mimetype": "image/jpeg",
      "picture": <Buffer ff d8 ff e0 00 10 4a 46 49 46 00 01 ... >
    } 
  ],
  "bitrate": 192,
  "bpm": 120,
  "samplerate": 44100,
  "channels": 2,
  "compilation": false,
  "time": "1:30",
  "length": 90
}
2.9.6

8 years ago

2.9.5

8 years ago

2.9.4

8 years ago

2.9.3

9 years ago

2.9.2

9 years ago

2.9.1

9 years ago

2.9.0

9 years ago

2.8.0

9 years ago

2.7.5

9 years ago

2.7.4

9 years ago

2.7.3

9 years ago

2.7.2

9 years ago

2.7.1

9 years ago

2.7.0

9 years ago

2.6.1

9 years ago

2.6.0

9 years ago

2.5.15

9 years ago

2.5.14

9 years ago

2.5.13

10 years ago

2.5.12

10 years ago

2.5.10

10 years ago

2.5.9

10 years ago

2.5.8

10 years ago

2.5.7

10 years ago

2.5.6

10 years ago

2.5.5

10 years ago

2.5.4

10 years ago

2.5.3

10 years ago

2.5.2

10 years ago

2.5.1

10 years ago

1.5.1

10 years ago

1.4.1

10 years ago

1.3.1

10 years ago

1.2.1

10 years ago

1.1.0

10 years ago

1.0.0

10 years ago