-
Notifications
You must be signed in to change notification settings - Fork 28.6k
video_player plugin always shows isBuffering as false #28494
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
video_player plugin always shows isBuffering as false #28494
Comments
isBuffering
as false
same here, even i set the buffer color, it never displays. |
@4ever911 Yeah! It's not showing. Even in the video_player example. |
Yes,Have you found a solution? |
same here |
@WoKee try this video_player:
git:
url: git://github.com/shmy/video_player_flutter.git |
When can we get this solved? |
Thanks . But I need to customize the video view . |
How's it going? |
How's it going? 22222 |
I just can't believe this isn't being addressed yet. Is there at least any workaround available? Thanks |
Anyone found the solution? |
I am getting same issue. any one get the solution? |
Looks like flutter team isn't interested in this.😒 |
We're always interested in improving Flutter, but we (that is, the Google contributors working on Flutter) have a finite number of resources and many areas to work on. As a general rule, we use the following guide to determine what issues to prioritize: https://github.com/flutter/flutter/wiki/What-should-I-work-on%3F One clear signal for us about what to prioritize is customer feedback, which is measured in part by thumbs-up on the original issue. Feel free to show us that this (or any other issue) is important to you by giving it the appropriate reaction. Of course, others are welcome to offer pull requests based on a different prioritization, and we gratefully appreciate offers of help. Information on contributing can be found here: https://github.com/flutter/flutter/blob/master/CONTRIBUTING.md |
We're developing Netflix, Amazon prime type platform called shaale. We're releasing this in January 10 even if this bug is not resolved. Hoping that the flutter team resolves anytime soon, we've planned to fix in our next version release. |
same here |
I am getting same issue any one got solution on this ? |
If the video files are small you can use the flutter_cache_manager package to download them and play it back as a file instead of a network video. Since the whole file is downloaded in cache and playing from a file it won't buffer.
|
@mhstoller This solution will not work on web, as stated in the video_player_web package:
Also, like you stated, it works for small files only, which is not an alternative to most buffering needs. |
I really want this problem solved. |
@Hixie Is it possible to get some attention on this issue? It seems more and more people are hitting it and it would be really helpful to have a fix. There is already an open PR for the Android fix at least, here: flutter/plugins#2563 |
* master: fix(video_player): buffering state events missing on Android & Web (fixes flutter/flutter#28494) (flutter#2563)
@Salakar Thanks! Maybe an extra question: how can I know in which version for Flutter it's going to be? |
…ixes flutter/flutter#28494) (flutter#2563) (cherry picked from commit b2e9ca5)
This thread has been automatically locked since there has not been any recent activity after it was closed. If you are still experiencing a similar issue, please open a new bug, including the output of |
Description
Flutter video player plugin always shows
isBuffering
asfalse
. Even in video_player plugin example, the code is there to showCircularProgressIndicator
while buffering but it does not show. https://github.com/flutter/plugins/blob/347f508dd403f6b26789852b503199af5e8ee9f6/packages/video_player/example/lib/main.dart#L85The text was updated successfully, but these errors were encountered: