MP3Processor class

Processes an MP3 file extracting key metadata information. The current version does not support extracting metadata from ID3 tags.

Constructors

MP3Processor()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

FRAME_1 int
getter/setter pair
FRAME_2 int
getter/setter pair
FRAME_3 int
getter/setter pair
FRAME_4 int
getter/setter pair

Static Methods

fromBytes(Uint8List bytes) MP3Info
Process the MP3 from a list of bytes
fromFile(File file) MP3Info
Process the MP3 contained within the File instance.