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