-
Notifications
You must be signed in to change notification settings - Fork 77
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
How to check for video progress? #153
Comments
when loading a video i wish to wait until its fully loaded , however the loader doesnt report progress by onProgress.. how to manage this? cant find any documentation |
I don't think we report individual resource load progress for anything that isn't XHR currently. PR welcome. You'd need to implement it in here: https://github.com/englercj/resource-loader/blob/master/src/load_strategies/MediaElementLoadStrategy.ts |
Oh actually, we don't report anything after "canplaythrough" because we consider that "done". The best thing to do here is probably create your own video element and use that. You can even pass it into resource loader if you want, depending on what you're actually doing. |
No description provided.
The text was updated successfully, but these errors were encountered: