Merge pull request #740 from GilgusMaximus/development

Added selection of resolution > 1080p for all devices.
This commit is contained in:
Luca Hohmann 2020-10-28 23:15:49 +01:00 committed by GitHub
commit 8f82571cf7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -159,7 +159,13 @@ export default Vue.extend({
await this.determineDefaultQualityLegacy()
}
this.player = videojs(videoPlayer)
this.player = videojs(videoPlayer, {
html5: {
vhs: {
limitRenditionByPlayerDimensions: false
}
}
})
this.player.volume(this.volume)
this.player.playbackRate(this.defaultPlayback)