id3-writer
id3-writer copied to clipboard
Comments frame not written
I'm having an issue writing comment frames.
Here is my code:
let id3 = require('id3-writer'),
writer = new id3.Writer(),
id3File = new id3.File('file.mp3'),
id3Meta = new id3.Meta({
title: 'MY TITLE',
comment: 'MY COMMENT',
artist: 'MY ARTIST',
album: 'MY ALBUM'
});
writer.setFile(id3File).write(id3Meta, function(err) {
//..
});
In this case the title, artist, and album frames are written as expected, but the comment is not (it seems). I am using eyed3 (http://eyed3.nicfit.net/).
I realize this is just a wrapper, but I'm just wondering if anyone else has (or can replicate) this problem.