music-metadata 0.1.2

A parser for id3v2.3, id3v2.4 and id3v1
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
struct Header {
  is_last: bool,
  block_type: BlockType,
  length: u32
}
enum BlockType {
  STREAMINFO,
  PADDING,
  APPLICATION,
  SEEKTABLE,
  VORBISCOMMENT,
  CUESHEET,
  PICTURE,
  RESERVED,
  INVALID
}