Skip to content

Comments frame not written #13

Description

@vonbearshark

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions