-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Fast-start when loading another MPD #355
Labels
status: archived
Archived and locked; will not be updated
Comments
shaka-bot
pushed a commit
that referenced
this issue
Apr 25, 2016
This allows applications to reset the Player's AbrManager and to use SimpleAbrManager in their own ABR implementations. Issue #355 Change-Id: I58d06c1d547b83b3221a30518620ad2352e97636
Hi, with 058004e you can re-configure the player with a new AbrManager. player.configure({
abr: { manager: new shaka.abr.SimpleAbrManager() }
}); This will reset all bandwidth estimations. |
It's basically OK but the correct code is: player.configure({
abr: { manager: new shaka.abr.SimpleAbrManager() }
}); Thank you. |
Thanks for the correction! (Original post edited.) |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I need to be able to start playback quickly after loading another MPD, but Shaka uses the best bandwidth achievable. How can I change this behavior to make it always load a low-bw track at first? Thank you!
The text was updated successfully, but these errors were encountered: