声音对象位置字节

时间:2010-08-25 10:53:53

标签: flash actionscript-3

我使用播放器中的声音对象http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/media/Sound.html。 方法play以毫秒为单位得到第一个参数startTime。 我如何能够按时间以字节为单位获得位置。

1 个答案:

答案 0 :(得分:0)

var song:SoundChannel=new SoundChannel();
            var mp3:Sound=new Sound(new URLRequest("http://localhost/file.mp3"));
            var positionInBytes:int=0;


            song=mp3.play();
            positionInBytes=song.position/mp3.length*mp3.bytesTotal;