declare namespace openfl.media { /** * The ID3Info class contains properties that reflect ID3 metadata. You can get * additional metadata for MP3 files by accessing the `id3` property of the Sound * class; for example, `mySound.id3.TIME`. For more information, see the entry for * `Sound.id3` and the ID3 tag definitions at http://www.id3.org. * */ export class ID3Info { constructor(); /** * The name of the album; corresponds to the ID3 2.0 tag TALB. * */ album: string; /** * The name of the artist; corresponds to the ID3 2.0 tag TPE1. * */ artist: string; /** * A comment about the recording; corresponds to the ID3 2.0 tag COMM. * */ comment: string; /** * The genre of the song; corresponds to the ID3 2.0 tag TCON. * */ genre: string; /** * The name of the song; corresponds to the ID3 2.0 tag TIT2. * */ songName: string; /** * The track number; corresponds to the ID3 2.0 tag TRCK. * */ track: string; /** * The year of the recording; corresponds to the ID3 2.0 tag TYER. * */ year: string; } } export default openfl.media.ID3Info;