开发者

Mp3 Player progress bar

开发者 https://www.devze.com 2023-02-06 14:08 出处:网络
I have an mp开发者_Python百科3 progress bar with my mp3 player.When the song is loading/playing the progress bar jumps around until the song has completely downloaded/loaded.

I have an mp开发者_Python百科3 progress bar with my mp3 player.When the song is loading/playing the progress bar jumps around until the song has completely downloaded/loaded.

Is this the normal functionality.

I am using the following on an EnterFrame Event.

duration = this.duration;
   pos = this.position;
   //The songs postion
   songPosition = (pos/duration)*100;
   updateProgress(songPosition);//Updates the progress Bar


Position and duration may not be known until the song gets loaded right. So I will initiate the progress bar after loading. (onLoad listerner)

0

精彩评论

暂无评论...
验证码 换一张
取 消