mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-11-10 02:08:21 +00:00
Fix player reuse and sponsorblock.
This commit is contained in:
parent
d4d74661d9
commit
dee927c527
@ -93,7 +93,6 @@ export default {
|
||||
title: "Loading..."
|
||||
},
|
||||
player: null,
|
||||
audioplayer: null,
|
||||
sponsors: null,
|
||||
selectedAutoPlay: null,
|
||||
showDesc: true
|
||||
@ -106,16 +105,14 @@ export default {
|
||||
},
|
||||
beforeUnmount() {
|
||||
if (this.player) {
|
||||
this.player.dispose();
|
||||
}
|
||||
if (this.audioplayer) {
|
||||
this.audioplayer.pause();
|
||||
document.querySelector("video").remove();
|
||||
window.player = undefined;
|
||||
window.ui = undefined;
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
"$route.query.v": function(v) {
|
||||
if (v) {
|
||||
if (this.audioplayer) this.audioplayer.pause();
|
||||
this.getVideoData();
|
||||
this.getSponsors();
|
||||
}
|
||||
@ -128,7 +125,7 @@ export default {
|
||||
);
|
||||
},
|
||||
async fetchSponsors() {
|
||||
await this.fetchJson(
|
||||
return await this.fetchJson(
|
||||
Constants.BASE_URL +
|
||||
"/sponsors/" +
|
||||
this.$route.query.v +
|
||||
@ -139,6 +136,46 @@ export default {
|
||||
if (localStorage)
|
||||
localStorage.setItem("autoplay", this.selectedAutoPlay);
|
||||
},
|
||||
setPlayerAttrs(player, videoEl, dash, shaka) {
|
||||
player
|
||||
.load(
|
||||
"data:application/dash+xml;charset=utf-8;base64," +
|
||||
btoa(dash)
|
||||
)
|
||||
.then(() => {
|
||||
this.video.subtitles.map(subtitle => {
|
||||
player.addTextTrack(
|
||||
subtitle.url,
|
||||
"eng",
|
||||
"SUBTITLE",
|
||||
subtitle.mimeType,
|
||||
null,
|
||||
"English"
|
||||
);
|
||||
player.setTextTrackVisibility(true);
|
||||
});
|
||||
if (localStorage)
|
||||
videoEl.volume = localStorage.getItem("volume") || 1;
|
||||
|
||||
const ui =
|
||||
window.ui ||
|
||||
(window.ui = new shaka.ui.Overlay(
|
||||
player,
|
||||
document.querySelector(
|
||||
"div[data-shaka-player-container]"
|
||||
),
|
||||
videoEl
|
||||
));
|
||||
const config = {
|
||||
overflowMenuButtons: [
|
||||
"quality",
|
||||
"captions",
|
||||
"playback_rate"
|
||||
]
|
||||
};
|
||||
ui.configure(config);
|
||||
});
|
||||
},
|
||||
async getVideoData() {
|
||||
this.fetchVideo()
|
||||
.then(data => {
|
||||
@ -168,66 +205,36 @@ export default {
|
||||
|
||||
const videoEl = document.querySelector("video");
|
||||
|
||||
if (noPrevPlayer) {
|
||||
setTimeout(function() {
|
||||
shaka
|
||||
.then(shaka => shaka.default)
|
||||
.then(shaka => {
|
||||
if (noPrevPlayer) {
|
||||
shaka.polyfill.installAll();
|
||||
|
||||
const player = new shaka.Player(videoEl);
|
||||
|
||||
player
|
||||
.load(
|
||||
"data:application/dash+xml;charset=utf-8;base64," +
|
||||
btoa(dash)
|
||||
)
|
||||
.then(() => {
|
||||
WatchVideo.video.subtitles.map(
|
||||
subtitle => {
|
||||
player.addTextTrack(
|
||||
subtitle.url,
|
||||
"eng",
|
||||
"SUBTITLE",
|
||||
subtitle.mimeType,
|
||||
null,
|
||||
"English"
|
||||
WatchVideo.player = player;
|
||||
window.player = player;
|
||||
|
||||
WatchVideo.setPlayerAttrs(
|
||||
player,
|
||||
videoEl,
|
||||
dash,
|
||||
shaka
|
||||
);
|
||||
player.setTextTrackVisibility(
|
||||
true
|
||||
} else {
|
||||
WatchVideo.setPlayerAttrs(
|
||||
window.player,
|
||||
videoEl,
|
||||
dash,
|
||||
shaka
|
||||
);
|
||||
}
|
||||
);
|
||||
if (localStorage)
|
||||
videoEl.volume =
|
||||
localStorage.getItem(
|
||||
"volume"
|
||||
) || 1;
|
||||
|
||||
const ui = new shaka.ui.Overlay(
|
||||
player,
|
||||
document.querySelector(
|
||||
"div[data-shaka-player-container]"
|
||||
),
|
||||
videoEl
|
||||
);
|
||||
const config = {
|
||||
overflowMenuButtons: [
|
||||
"quality",
|
||||
"captions",
|
||||
"playback_rate"
|
||||
]
|
||||
};
|
||||
ui.configure(config);
|
||||
});
|
||||
|
||||
videoEl.setAttribute(
|
||||
"poster",
|
||||
WatchVideo.video.thumbnailUrl
|
||||
);
|
||||
});
|
||||
}, 0);
|
||||
}
|
||||
|
||||
videoEl.setAttribute("poster", this.video.thumbnailUrl);
|
||||
|
||||
if (this.$route.query.t)
|
||||
this.player.currentTime(this.$route.query.t);
|
||||
|
Loading…
Reference in New Issue
Block a user