BufferingChanged does not fire
See original GitHub issueI have a basic Xamarin.Forms PCL project in VS 2017, debugging on physical Galaxy S7 Edge device.
With these 2 events wired up, the BufferingChanged event does NOT fire, but the PlayingChanged event DOES fire:
CrossMediaManager.Current.BufferingChanged += (sender, e) =>
{
BufferBar.Progress = e.BufferProgress;
};
CrossMediaManager.Current.PlayingChanged += (sender, e) =>
{
ProgressBar.Progress = e.Progress * 0.01;
Duration.Text = "" + e.Duration.TotalSeconds.ToString() + " seconds";
};
I set breakpoint inside the BufferingChanged event and it’s never hit.
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Infuse 6.6.2 buffering changed? - Streaming & Network
Hi! So until this day, infuse prebuffered almost the whole video file if it was only like 2gb of size. Since the new...
Read more >Changed to ethernet buffering changed - Streaming & Network
Hi! I attached my atv4k via ethernet to my network. Previously ir was on 5ghz wifi. When playing smaller files like 2gb via...
Read more >Amazon.com: Customer Questions & Answers
Q: Bought a new fire tv (3 generation). constant buffering, changed wifi carrier (hughes net, 20mp) still not much better. help. Answer this...
Read more >Very strange issue. Buffering on Real Debrid for the first ...
The weird thing is if I skip forward or backward 10 seconds in the video, it stops the buffering and continues to play...
Read more >Solved Terrain flickering all the time
Hi,Lately, the external view flickers badly. It is impossible to use the game like this.The cockpit and sky do not flicker, only the...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@Ruddy2007, I think I’ve got an fix and will create a PR shortly. The issue is more related to #215
Buffering is never hit after the first load. If you seek etc it never gets hit. We kind of need this to tell the user it is buffing. Any fix?