Git Product home page Git Product logo

Comments (7)

lsjwzh avatar lsjwzh commented on May 4, 2024

To use 'onStateChanged', and then to write a condition expression like this : 'playbackState == ExoPlayer.STATE_BUFFERING'?

from exoplayer.

ojw28 avatar ojw28 commented on May 4, 2024

Yes, like that. It currently wont work too well if you're using FrameworkSampleSource, but will work perfectly for DASH and SmoothStreaming playbacks.

For FrameworkSampleSource, the issue is a result of the threading model used within that class. There's a TODO in the class to resolve the problem, but it's not particularly straightforward.

from exoplayer.

lsjwzh avatar lsjwzh commented on May 4, 2024

e,what do you mean "wont work too well"??

from exoplayer.

lsjwzh avatar lsjwzh commented on May 4, 2024

I must to show a dialog while video buffering,so i need to watch the state 'buffering' and 'buffering over'.
Can i use it like this?:

 public void onStateChanged(boolean playWhenReady, int playbackState) {
                if (playbackState == ExoPlayer.STATE_ENDED) {
                    for(EventListener listener : getListeners()){
                        listener.onPlayComplete();
                    }
                }else if (playbackState == ExoPlayer.STATE_BUFFERING) {
                    for(EventListener listener : getListeners()){
                        listener.onBuffering(mExoPlayer.getBufferedPercentage());
                    }
                }
            }

from exoplayer.

lsjwzh avatar lsjwzh commented on May 4, 2024
@Override
  public boolean continueBuffering(long playbackPositionUs) {
    // MediaExtractor takes care of buffering and blocks until it has samples, so we can always
    // return true here. Although note that the blocking behavior is itself as bug, as per the
    // TODO further up this file. This method will need to return something else as part of fixing
    // the TODO.
    return true;
  }

Does it mean that 'STATE_BUFFERING' will never be triggered?

from exoplayer.

ojw28 avatar ojw28 commented on May 4, 2024

Yeah, currently that's the case (except for the initial buffering phase, which probably will be reported correctly, although don't quote me on that ;)). Calling through to the extractor needs to be pushed off onto a separate thread to fix this.

If you're trying to play something that's not DASH or SmoothStreaming content, and you don't need any customization or advanced features, then you may as well just use the standard MediaPlayer API at this point in time.

from exoplayer.

lsjwzh avatar lsjwzh commented on May 4, 2024

e.....The standard MediaPlayer API need more time to buffer video data while 'prepare' method executing.
That is why I used ExoPlayer with FrameworkSampleSource to replace the standard MediaPlayer API.
In actually,according my test result on some android phone, more than 60% of phones have got improved on buffering data.

from exoplayer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.