read-audio-tags
v0.1.1
Published
Read tags from all common formats.
Downloads
7
Maintainers
Readme
read-audio-tags
Read tags from all common formats. Uses ffprobe.
Installing
npm install read-audio-tags
Usage
const readTags = require('read-audio-tags')
readTags('/path/to/audio.m4a', (err, tags) => {
if (err) console.error(err)
else console.log(tags)
})
API
readTags(file, [ffprobe], cb)
You may pass in an ffprobe
path to use a custom executable, e.g. from ffprobe-static
.
Contributing
If you have a question or have difficulties using read-audio-tags
, please double-check your code and setup first. If you think you have found a bug or want to propose a feature, refer to the issues page.