Fix http player defaulting to audio resolution
This commit is contained in:
parent
462212107a
commit
1a5b67b66d
|
@ -557,7 +557,8 @@ class WebTorrentPlugin extends Plugin {
|
||||||
private pickAverageVideoFile () {
|
private pickAverageVideoFile () {
|
||||||
if (this.videoFiles.length === 1) return this.videoFiles[0]
|
if (this.videoFiles.length === 1) return this.videoFiles[0]
|
||||||
|
|
||||||
return this.videoFiles[Math.floor(this.videoFiles.length / 2)]
|
const files = this.videoFiles.filter(f => f.resolution.id !== 0)
|
||||||
|
return files[Math.floor(files.length / 2)]
|
||||||
}
|
}
|
||||||
|
|
||||||
private stopTorrent (torrent: WebTorrent.Torrent) {
|
private stopTorrent (torrent: WebTorrent.Torrent) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user