mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-10 10:18:23 +00:00
Merge pull request #2879 from snematoda/plyr-err
Display error in player
This commit is contained in:
commit
8906215c9b
@ -25,6 +25,11 @@
|
|||||||
<span v-t="'actions.skip_segment'" />
|
<span v-t="'actions.skip_segment'" />
|
||||||
<i class="material-icons-round">skip_next</i>
|
<i class="material-icons-round">skip_next</i>
|
||||||
</button>
|
</button>
|
||||||
|
<span
|
||||||
|
v-if="error > 0"
|
||||||
|
v-t="{ path: 'player.failed', args: [error] }"
|
||||||
|
class="absolute top-8 rounded bg-black/80 p-2 text-lg backdrop-blur-sm"
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -67,6 +72,7 @@ export default {
|
|||||||
isHoveringTimebar: false,
|
isHoveringTimebar: false,
|
||||||
currentTime: 0,
|
currentTime: 0,
|
||||||
seekbarPadding: 2,
|
seekbarPadding: 2,
|
||||||
|
error: 0,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
@ -517,73 +523,79 @@ export default {
|
|||||||
quality > 0 && (this.video.audioStreams.length > 0 || this.video.livestream) && !disableVideo;
|
quality > 0 && (this.video.audioStreams.length > 0 || this.video.livestream) && !disableVideo;
|
||||||
if (qualityConds) this.$player.configure("abr.enabled", false);
|
if (qualityConds) this.$player.configure("abr.enabled", false);
|
||||||
|
|
||||||
player.load(uri, 0, mime).then(() => {
|
player
|
||||||
const isSafari = window.navigator?.vendor?.includes("Apple");
|
.load(uri, 0, mime)
|
||||||
|
.then(() => {
|
||||||
|
const isSafari = window.navigator?.vendor?.includes("Apple");
|
||||||
|
|
||||||
if (!isSafari) {
|
if (!isSafari) {
|
||||||
// Set the audio language
|
// Set the audio language
|
||||||
const prefLang = this.getPreferenceString("hl", "en").substr(0, 2);
|
const prefLang = this.getPreferenceString("hl", "en").substr(0, 2);
|
||||||
var lang = "en";
|
var lang = "en";
|
||||||
for (var l in player.getAudioLanguages()) {
|
for (var l in player.getAudioLanguages()) {
|
||||||
if (l == prefLang) {
|
if (l == prefLang) {
|
||||||
lang = l;
|
lang = l;
|
||||||
return;
|
return;
|
||||||
}
|
|
||||||
}
|
|
||||||
player.selectAudioLanguage(lang);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (qualityConds) {
|
|
||||||
var leastDiff = Number.MAX_VALUE;
|
|
||||||
var bestStream = null;
|
|
||||||
|
|
||||||
var bestAudio = 0;
|
|
||||||
|
|
||||||
const tracks = player
|
|
||||||
.getVariantTracks()
|
|
||||||
.filter(track => track.language == lang || track.language == "und");
|
|
||||||
|
|
||||||
// Choose the best audio stream
|
|
||||||
if (quality >= 480)
|
|
||||||
tracks.forEach(track => {
|
|
||||||
const audioBandwidth = track.audioBandwidth;
|
|
||||||
if (audioBandwidth > bestAudio) bestAudio = audioBandwidth;
|
|
||||||
});
|
|
||||||
|
|
||||||
// Find best matching stream based on resolution and bitrate
|
|
||||||
tracks
|
|
||||||
.sort((a, b) => a.bandwidth - b.bandwidth)
|
|
||||||
.forEach(stream => {
|
|
||||||
if (stream.audioBandwidth < bestAudio) return;
|
|
||||||
|
|
||||||
const diff = Math.abs(quality - stream.height);
|
|
||||||
if (diff < leastDiff) {
|
|
||||||
leastDiff = diff;
|
|
||||||
bestStream = stream;
|
|
||||||
}
|
}
|
||||||
});
|
}
|
||||||
|
player.selectAudioLanguage(lang);
|
||||||
|
}
|
||||||
|
|
||||||
player.selectVariantTrack(bestStream);
|
if (qualityConds) {
|
||||||
}
|
var leastDiff = Number.MAX_VALUE;
|
||||||
|
var bestStream = null;
|
||||||
|
|
||||||
this.video.subtitles.map(subtitle => {
|
var bestAudio = 0;
|
||||||
player.addTextTrackAsync(
|
|
||||||
subtitle.url,
|
const tracks = player
|
||||||
subtitle.code,
|
.getVariantTracks()
|
||||||
"subtitles",
|
.filter(track => track.language == lang || track.language == "und");
|
||||||
subtitle.mimeType,
|
|
||||||
null,
|
// Choose the best audio stream
|
||||||
subtitle.name,
|
if (quality >= 480)
|
||||||
);
|
tracks.forEach(track => {
|
||||||
|
const audioBandwidth = track.audioBandwidth;
|
||||||
|
if (audioBandwidth > bestAudio) bestAudio = audioBandwidth;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Find best matching stream based on resolution and bitrate
|
||||||
|
tracks
|
||||||
|
.sort((a, b) => a.bandwidth - b.bandwidth)
|
||||||
|
.forEach(stream => {
|
||||||
|
if (stream.audioBandwidth < bestAudio) return;
|
||||||
|
|
||||||
|
const diff = Math.abs(quality - stream.height);
|
||||||
|
if (diff < leastDiff) {
|
||||||
|
leastDiff = diff;
|
||||||
|
bestStream = stream;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
player.selectVariantTrack(bestStream);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.video.subtitles.map(subtitle => {
|
||||||
|
player.addTextTrackAsync(
|
||||||
|
subtitle.url,
|
||||||
|
subtitle.code,
|
||||||
|
"subtitles",
|
||||||
|
subtitle.mimeType,
|
||||||
|
null,
|
||||||
|
subtitle.name,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
videoEl.volume = this.getPreferenceNumber("volume", 1);
|
||||||
|
const rate = this.getPreferenceNumber("rate", 1);
|
||||||
|
videoEl.playbackRate = rate;
|
||||||
|
videoEl.defaultPlaybackRate = rate;
|
||||||
|
|
||||||
|
const autoDisplayCaptions = this.getPreferenceBoolean("autoDisplayCaptions", false);
|
||||||
|
this.$player.setTextTrackVisibility(autoDisplayCaptions);
|
||||||
|
})
|
||||||
|
.catch(e => {
|
||||||
|
console.error(e);
|
||||||
|
this.error = e.code;
|
||||||
});
|
});
|
||||||
videoEl.volume = this.getPreferenceNumber("volume", 1);
|
|
||||||
const rate = this.getPreferenceNumber("rate", 1);
|
|
||||||
videoEl.playbackRate = rate;
|
|
||||||
videoEl.defaultPlaybackRate = rate;
|
|
||||||
|
|
||||||
const autoDisplayCaptions = this.getPreferenceBoolean("autoDisplayCaptions", false);
|
|
||||||
this.$player.setTextTrackVisibility(autoDisplayCaptions);
|
|
||||||
});
|
|
||||||
|
|
||||||
// expand the player to fullscreen when the fullscreen query equals true
|
// expand the player to fullscreen when the fullscreen query equals true
|
||||||
if (this.$route.query.fullscreen === "true" && !this.$ui.getControls().isFullScreenEnabled())
|
if (this.$route.query.fullscreen === "true" && !this.$ui.getControls().isFullScreenEnabled())
|
||||||
|
@ -18,7 +18,8 @@
|
|||||||
"dearrow": "DeArrow"
|
"dearrow": "DeArrow"
|
||||||
},
|
},
|
||||||
"player": {
|
"player": {
|
||||||
"watch_on": "Watch on {0}"
|
"watch_on": "Watch on {0}",
|
||||||
|
"failed": "Failed with error code {0}, refer logs for more info"
|
||||||
},
|
},
|
||||||
"actions": {
|
"actions": {
|
||||||
"subscribe": "Subscribe - {count}",
|
"subscribe": "Subscribe - {count}",
|
||||||
|
Loading…
Reference in New Issue
Block a user