-
Notifications
You must be signed in to change notification settings - Fork 7.5k
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
LoadedAllData event fails to fire after Flash file played #1676
Comments
Were you able to get it working? |
Try the loadeddata event. hth |
Sorry about the delay! Added this as confirmed and we'll take a look at getting this resolved next week. |
any updates on this issue? running into it myself while using the videojs-contrib-ads plugin |
I think we need to deprecate the
Any objections to doing that? |
Kill it with fire. |
In the below sample code below (insert your favorite flv and mp4 files), the flv will load and play, and then the mp4 will load but not play. It seems the LoadedAllData event fails to fire after the flv is loaded/played.
Heff points to a bug. See:
http://stackoverflow.com/questions/26985646/video-js-loadedalldata-firing-only-once
Here is the jist of that post (just in case):
This line of code turns the events off as soon as the buffer reaches 100%, but then never resets itself on a later source load.
video.js/src/js/media/media.js
Line 192 in ce18a9a
It should restart these events when the loadstart event is fired again by the flash player, signaling a new source has been loaded.
My sample code:
The text was updated successfully, but these errors were encountered: