filter to Cap the maximum resolution to the screen resolution

pull/761/head
Nitesh Sawant 2018-06-30 15:14:50 +05:30 committed by Chocobozzz
parent b5c4bfd6ac
commit 06aa2726d7
1 changed files with 3 additions and 2 deletions

View File

@ -365,8 +365,9 @@ class PeerTubePlugin extends Plugin {
if (!averageDownloadSpeed) averageDownloadSpeed = this.getAndSaveActualDownloadSpeed()
// Filter videos we can play according to our bandwidth
const filteredFiles = this.videoFiles.filter(f => {
// Filter videos we can play according to our screen resolution and bandwidth
const filteredFiles = this.videoFiles.filter(f => f.resolution.id <= this.playerElement.width)
.filter(f => {
const fileBitrate = (f.size / this.videoDuration)
let threshold = fileBitrate