THEOplayer > ABRStrategyType
The adaptive bitrate strategy of the first segment, represented by a value from the following list:
- 'performance'
: The player will optimize ABR behavior to focus on the performance of the player. This strategy initiates playback with the lowest quality suitable for the device which means faster start-up time.
- 'quality'
: The player will optimize ABR behavior to focus displaying the best visual quality to the end-user. This strategy initiates playback with the highest bit rate suitable for the device.
- 'bandwidth'
: The player will optimize the ABR behavior to focus on displaying the most optimal quality based on historic data of available bandwidth and knowledge of the network conditions.
Signature:
export type ABRStrategyType = 'performance' | 'quality' | 'bandwidth';