We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hls.js accepts a bunch of different configuration parameters which can be used to fine-tune the player's performance and behaviors: https://github.com/video-dev/hls.js/blob/master/docs/API.md#fine-tuning.
hls-video-element owns the Hls instance and does not provide a way to inject additional configuration parameters: https://github.com/muxinc/media-elements/blob/main/packages/hls-video-element/hls-video-element.js#L45.
hls-video-element
Would it be possible to add this as a feature?
The text was updated successfully, but these errors were encountered:
This feature would be great, especially to better control the default quality (abrEwmaDefaultEstimate)
Sorry, something went wrong.
This is actually possible to customize the Hls default settings :
import { Hls } from 'hls-video-element' Object.assign(Hls.DefaultConfig, { startLevel: -1, useDevicePixelRatio: true, capLevelToPlayerSize: true, abrEwmaDefaultEstimate: 500000 * 2, abrEwmaDefaultEstimateMax: 5000000 })
No branches or pull requests
hls.js accepts a bunch of different configuration parameters which can be used to fine-tune the player's performance and behaviors: https://github.com/video-dev/hls.js/blob/master/docs/API.md#fine-tuning.
hls-video-element
owns the Hls instance and does not provide a way to inject additional configuration parameters: https://github.com/muxinc/media-elements/blob/main/packages/hls-video-element/hls-video-element.js#L45.Would it be possible to add this as a feature?
The text was updated successfully, but these errors were encountered: