From 8eb8bc201e0861599702a4048ff7edc59ad34d89 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Thu, 7 Jun 2018 17:51:25 +0200 Subject: [PATCH] Pick average video file insead of max quality --- client/src/assets/player/peertube-videojs-plugin.ts | 10 ++++++++-- server/lib/job-queue/handlers/video-file.ts | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/client/src/assets/player/peertube-videojs-plugin.ts b/client/src/assets/player/peertube-videojs-plugin.ts index b54f096b2..e68d79e40 100644 --- a/client/src/assets/player/peertube-videojs-plugin.ts +++ b/client/src/assets/player/peertube-videojs-plugin.ts @@ -147,7 +147,7 @@ class PeerTubePlugin extends Plugin { const savedAverageBandwidth = getAverageBandwidth() videoFile = savedAverageBandwidth ? this.getAppropriateFile(savedAverageBandwidth) - : this.videoFiles[0] + : this.pickAverageVideoFile() } // Don't add the same video file once again @@ -377,7 +377,7 @@ class PeerTubePlugin extends Plugin { } else { // Don't try on iOS that does not support MediaSource if (this.isIOS()) { - this.currentVideoFile = this.videoFiles[0] + this.currentVideoFile = this.pickAverageVideoFile() return this.fallbackToHttp(undefined, false) } @@ -533,6 +533,12 @@ class PeerTubePlugin extends Plugin { settingsDialog.on('mouseleave', () => enableInactivity()) } + private pickAverageVideoFile () { + if (this.videoFiles.length === 1) return this.videoFiles[0] + + return this.videoFiles[Math.floor(this.videoFiles.length / 2)] + } + // Thanks: https://github.com/videojs/video.js/issues/4460#issuecomment-312861657 private initSmoothProgressBar () { const SeekBar = videojsUntyped.getComponent('SeekBar') diff --git a/server/lib/job-queue/handlers/video-file.ts b/server/lib/job-queue/handlers/video-file.ts index a6fce4279..85f7dbfc2 100644 --- a/server/lib/job-queue/handlers/video-file.ts +++ b/server/lib/job-queue/handlers/video-file.ts @@ -85,7 +85,7 @@ async function onVideoFileOptimizerSuccess (video: VideoModel, isNewVideo: boole if (!videoDatabase) return undefined if (video.privacy !== VideoPrivacy.PRIVATE) { - if (isNewVideo === true) { + if (isNewVideo !== false) { // Now we'll add the video's meta data to our followers await sequelizeTypescript.transaction(async t => { await sendCreateVideo(video, t) -- 2.41.0