ID3 Reader : MP3 « Development « Flash / Flex / ActionScript






ID3 Reader

 

package {
    import flash.display.Sprite;
    import flash.media.Sound;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.text.TextField;
    
    public class Main extends Sprite {
        private var _sound:Sound;
        
        public function Main(  ) {
            _sound = new Sound(new URLRequest("song.mp3"));
            _sound.addEventListener(Event.ID3, onID3);
            _sound.play(  );
        }
        
        public function onID3(event:Event):void {
            var id3Display:TextField = new TextField(  );
            addChild(id3Display);
            id3Display.x = 10;
            id3Display.y = 20;
            id3Display.width = 200;
            id3Display.height = 200;
            id3Display.background = true;
            id3Display.multiline = true;
            id3Display.wordWrap = true;

            id3Display.text += _sound.id3.songName + "\n";
            id3Display.text += _sound.id3.artist + "\n";
            id3Display.text += _sound.id3.album + "\n";
            id3Display.text += _sound.id3.year + "\n";           
        }
    }
}        

        








Related examples in the same category

1.Load mp3 sound file
2.Load mp3 file from a URL
3.Find Out When a Sound Finishes Playing
4.Tracking the Progress of a Playing Sound
5.Reading the Level of a Sound
6.Calculating Spectrum Data