Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bug with buffer bar on jplayer circle. #19

Open
happyworm opened this issue Jan 13, 2014 · 0 comments
Open

bug with buffer bar on jplayer circle. #19

happyworm opened this issue Jan 13, 2014 · 0 comments

Comments

@happyworm
Copy link
Contributor

Copied from jPlayer Group Post

Sorry for my bad english.

I found bug in work buffer bar on jplayer circle.

in circle.player.js on line 120

  percent = 100 * bufferTime / self.audio.duration;

but, other case bufferTime > self.audio.duration and percent > 100!

  bufferTime=77.32250213623047
  self.audio.duration=77.3225

Then the last step function _progress not work, because else if (percent <= 100)
i fix this insert line below percent = 100 * bufferTime / self.audio.duration;
if(percent>100) percent=100;

test this bug: http://test.voice-cards.tk/audio/test.htm

sample mp3-files:
http://voice-cards.tk/get_track.php?id=100625

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

0 participants