nikhilm / node-taglib

Simple taglib bindings to Javascript using node.js
http://nikhilm.github.com/node-taglib
MIT License
147 stars 25 forks source link

question: will I be able to read/write the album artist? #44

Open andrewrk opened 11 years ago

andrewrk commented 11 years ago

the README says that these fields are available:

title (string) album (string) comment (string) artist (string) track (string) year (integer) genre (string)

Is it possible to get other fields, such as album artist?

nikhilm commented 11 years ago

node-taglib supports what TagLib's Tag class supports - http://taglib.github.io/api/classTagLib_1_1Tag.html That said, it is possible to extract extra properties using Tag::properties() but node-taglib does not expose that yet. Patches are welcome.