metaflac-js2
v1.0.8
Published
A pure JavaScript implementation of the metaflac (official FLAC tool)
Readme
metaflac-js2
A pure JavaScript implementation of the metaflac (the official FLAC tool written in C++)
This is a tool that has just been completed, I hope to help you, and I hope we can optimize it together.
Use as module:
npm i metaflac-js2 --saveconst Metaflac = require('metaflac-js2');
const flac = new Metaflac('/path/to/flac.flac or buffer');
flac.setTag('TITLE=My Music');
flac.save();Use as cli:
Usage is basically consistent with official tools.
npm i metaflac-js2 -g
metaflac-js -hNote: here is the official FLAC tools doc
- This is a fork of metaflac-js with minor improvements for detecting image dimensions and mime type.
Changelog:
Removed
importPictureFromandimportPictureFromBufferAdded
importPictureimportPicture takes either path or buffer
