2021-04-01 15:13:35 +00:00
|
|
|
<template>
|
2021-12-27 14:46:29 +00:00
|
|
|
<div class="w-full">
|
2021-06-22 09:49:14 +00:00
|
|
|
<div
|
2021-10-08 18:52:51 +00:00
|
|
|
ref="container"
|
2021-06-22 09:49:14 +00:00
|
|
|
data-shaka-player-container
|
2021-08-04 05:13:22 +00:00
|
|
|
style="width: 100%; height: 100%; background: #000"
|
|
|
|
:style="!isEmbed ? { 'max-height': '75vh', 'min-height': '250px' } : {}"
|
2021-06-22 09:49:14 +00:00
|
|
|
>
|
2021-12-27 22:33:55 +00:00
|
|
|
<video ref="videoEl" data-shaka-player class="w-full" :autoplay="shouldAutoPlay" :loop="selectedAutoLoop" />
|
2021-05-06 17:30:02 +00:00
|
|
|
</div>
|
2021-04-01 15:13:35 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import("shaka-player/dist/controls.css");
|
|
|
|
const shaka = import("shaka-player/dist/shaka-player.ui.js");
|
2021-06-09 21:21:35 +00:00
|
|
|
import muxjs from "mux.js";
|
|
|
|
window.muxjs = muxjs;
|
2021-04-01 15:13:35 +00:00
|
|
|
|
|
|
|
export default {
|
2021-05-06 17:30:02 +00:00
|
|
|
props: {
|
2021-10-08 18:52:51 +00:00
|
|
|
video: {
|
|
|
|
type: Object,
|
|
|
|
default: () => {
|
|
|
|
return {};
|
|
|
|
},
|
|
|
|
},
|
|
|
|
sponsors: {
|
|
|
|
type: Object,
|
|
|
|
default: () => {
|
|
|
|
return {};
|
|
|
|
},
|
|
|
|
},
|
2021-05-06 17:30:02 +00:00
|
|
|
selectedAutoPlay: Boolean,
|
2021-07-04 18:42:10 +00:00
|
|
|
selectedAutoLoop: Boolean,
|
2021-08-04 05:13:22 +00:00
|
|
|
isEmbed: Boolean,
|
2021-05-06 17:30:02 +00:00
|
|
|
},
|
2021-07-07 14:18:09 +00:00
|
|
|
data() {
|
|
|
|
return {
|
2021-10-06 14:33:52 +00:00
|
|
|
$player: null,
|
|
|
|
$ui: null,
|
2021-10-27 00:15:37 +00:00
|
|
|
lastUpdate: new Date().getTime(),
|
2021-07-07 14:18:09 +00:00
|
|
|
};
|
|
|
|
},
|
2021-05-06 17:30:02 +00:00
|
|
|
computed: {
|
2021-07-04 18:26:02 +00:00
|
|
|
shouldAutoPlay: _this => {
|
2021-10-28 17:35:48 +00:00
|
|
|
return _this.getPreferenceBoolean("playerAutoPlay", true) && !_this.isEmbed;
|
2021-05-06 17:30:02 +00:00
|
|
|
},
|
2021-07-21 10:48:59 +00:00
|
|
|
preferredVideoCodecs: _this => {
|
|
|
|
var preferredVideoCodecs = [];
|
2021-08-27 07:33:55 +00:00
|
|
|
const enabledCodecs = _this.getPreferenceString("enabledCodecs", "av1,vp9,avc").split(",");
|
2021-07-21 10:48:59 +00:00
|
|
|
|
2021-08-27 07:33:55 +00:00
|
|
|
if (
|
|
|
|
_this.$refs.videoEl.canPlayType('video/mp4; codecs="av01.0.08M.08"') !== "" &&
|
|
|
|
enabledCodecs.includes("av1")
|
|
|
|
)
|
2021-07-21 10:48:59 +00:00
|
|
|
preferredVideoCodecs.push("av01");
|
2021-08-27 07:33:55 +00:00
|
|
|
if (_this.$refs.videoEl.canPlayType('video/webm; codecs="vp9"') !== "" && enabledCodecs.includes("vp9"))
|
|
|
|
preferredVideoCodecs.push("vp9");
|
|
|
|
if (
|
|
|
|
_this.$refs.videoEl.canPlayType('video/mp4; codecs="avc1.4d401f"') !== "" &&
|
|
|
|
enabledCodecs.includes("avc")
|
|
|
|
)
|
2021-07-21 10:48:59 +00:00
|
|
|
preferredVideoCodecs.push("avc1");
|
|
|
|
|
|
|
|
return preferredVideoCodecs;
|
|
|
|
},
|
2021-05-06 17:30:02 +00:00
|
|
|
},
|
2021-07-09 20:55:09 +00:00
|
|
|
mounted() {
|
|
|
|
if (!this.shaka) this.shakaPromise = shaka.then(shaka => shaka.default).then(shaka => (this.shaka = shaka));
|
|
|
|
},
|
2021-10-08 18:52:51 +00:00
|
|
|
activated() {
|
|
|
|
import("hotkeys-js")
|
|
|
|
.then(mod => mod.default)
|
|
|
|
.then(hotkeys => {
|
|
|
|
this.hotkeys = hotkeys;
|
|
|
|
var self = this;
|
2022-01-12 05:42:48 +00:00
|
|
|
hotkeys(
|
|
|
|
"f,m,j,k,l,c,space,up,down,left,right,0,1,2,3,4,5,6,7,8,9,shift+,,shift+.",
|
|
|
|
function (e, handler) {
|
|
|
|
const videoEl = self.$refs.videoEl;
|
|
|
|
switch (handler.key) {
|
|
|
|
case "f":
|
|
|
|
self.$ui.getControls().toggleFullScreen();
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "m":
|
|
|
|
videoEl.muted = !videoEl.muted;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "j":
|
|
|
|
videoEl.currentTime = Math.max(videoEl.currentTime - 15, 0);
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "l":
|
|
|
|
videoEl.currentTime = videoEl.currentTime + 15;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "c":
|
|
|
|
self.$player.setTextTrackVisibility(!self.$player.isTextTrackVisible());
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "k":
|
|
|
|
case "space":
|
|
|
|
if (videoEl.paused) videoEl.play();
|
|
|
|
else videoEl.pause();
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "up":
|
|
|
|
videoEl.volume = Math.min(videoEl.volume + 0.05, 1);
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "down":
|
|
|
|
videoEl.volume = Math.max(videoEl.volume - 0.05, 0);
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "left":
|
|
|
|
videoEl.currentTime = Math.max(videoEl.currentTime - 5, 0);
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "right":
|
|
|
|
videoEl.currentTime = videoEl.currentTime + 5;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "0":
|
|
|
|
videoEl.currentTime = 0;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "1":
|
|
|
|
videoEl.currentTime = videoEl.duration * 0.1;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "2":
|
|
|
|
videoEl.currentTime = videoEl.duration * 0.2;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "3":
|
|
|
|
videoEl.currentTime = videoEl.duration * 0.3;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "4":
|
|
|
|
videoEl.currentTime = videoEl.duration * 0.4;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "5":
|
|
|
|
videoEl.currentTime = videoEl.duration * 0.5;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "6":
|
|
|
|
videoEl.currentTime = videoEl.duration * 0.6;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "7":
|
|
|
|
videoEl.currentTime = videoEl.duration * 0.7;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "8":
|
|
|
|
videoEl.currentTime = videoEl.duration * 0.8;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "9":
|
|
|
|
videoEl.currentTime = videoEl.duration * 0.9;
|
|
|
|
e.preventDefault();
|
|
|
|
break;
|
|
|
|
case "shift+,":
|
|
|
|
self.$player.trickPlay(Math.max(videoEl.playbackRate - 0.25, 0.25));
|
|
|
|
break;
|
|
|
|
case "shift+.":
|
|
|
|
self.$player.trickPlay(Math.min(videoEl.playbackRate + 0.25, 2));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
2021-10-08 18:52:51 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
deactivated() {
|
|
|
|
this.destroy();
|
|
|
|
},
|
|
|
|
unmounted() {
|
|
|
|
this.destroy();
|
|
|
|
},
|
2021-05-06 17:30:02 +00:00
|
|
|
methods: {
|
2021-09-05 13:12:27 +00:00
|
|
|
async loadVideo() {
|
2021-06-09 21:21:35 +00:00
|
|
|
const component = this;
|
2021-05-06 17:30:02 +00:00
|
|
|
const videoEl = this.$refs.videoEl;
|
2021-04-01 15:13:35 +00:00
|
|
|
|
2021-05-06 17:30:02 +00:00
|
|
|
videoEl.setAttribute("poster", this.video.thumbnailUrl);
|
2021-04-01 15:13:35 +00:00
|
|
|
|
2021-10-27 00:15:37 +00:00
|
|
|
if (this.$route.query.t) {
|
2022-01-12 04:52:15 +00:00
|
|
|
const time = this.$route.query.t;
|
|
|
|
let start = 0;
|
|
|
|
if (/^[\d]*$/g.test(time)) {
|
|
|
|
start = time;
|
|
|
|
} else {
|
|
|
|
const hours = /([\d]*)h/gi.exec(time)?.[1];
|
|
|
|
const minutes = /([\d]*)m/gi.exec(time)?.[1];
|
|
|
|
const seconds = /([\d]*)s/gi.exec(time)?.[1];
|
|
|
|
if (hours) {
|
|
|
|
start += parseInt(hours) * 60 * 60;
|
|
|
|
}
|
|
|
|
if (minutes) {
|
|
|
|
start += parseInt(minutes) * 60;
|
|
|
|
}
|
|
|
|
if (seconds) {
|
|
|
|
start += parseInt(seconds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
videoEl.currentTime = start;
|
2021-10-27 00:34:57 +00:00
|
|
|
} else if (window.db) {
|
2021-10-27 00:15:37 +00:00
|
|
|
var tx = window.db.transaction("watch_history", "readonly");
|
|
|
|
var store = tx.objectStore("watch_history");
|
2021-11-11 08:16:00 +00:00
|
|
|
var request = store.get(this.video.id);
|
2022-01-01 14:53:55 +00:00
|
|
|
request.onsuccess = function (event) {
|
2021-10-27 00:15:37 +00:00
|
|
|
var video = event.target.result;
|
|
|
|
if (video && video.currentTime) {
|
|
|
|
videoEl.currentTime = video.currentTime;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2021-04-01 15:13:35 +00:00
|
|
|
|
2021-10-06 14:33:52 +00:00
|
|
|
const noPrevPlayer = !this.$player;
|
2021-05-06 17:30:02 +00:00
|
|
|
|
|
|
|
var streams = [];
|
|
|
|
|
|
|
|
streams.push(...this.video.audioStreams);
|
|
|
|
streams.push(...this.video.videoStreams);
|
|
|
|
|
2021-07-07 19:34:46 +00:00
|
|
|
const MseSupport = window.MediaSource !== undefined;
|
|
|
|
|
2021-09-02 13:46:27 +00:00
|
|
|
const lbry = this.getPreferenceBoolean("disableLBRY", false)
|
|
|
|
? null
|
|
|
|
: this.video.videoStreams.filter(stream => stream.quality === "LBRY")[0];
|
2021-07-28 08:02:23 +00:00
|
|
|
|
2021-06-09 21:21:35 +00:00
|
|
|
var uri;
|
2021-09-05 13:12:27 +00:00
|
|
|
var mime;
|
2021-06-09 21:21:35 +00:00
|
|
|
|
2021-08-30 15:48:08 +00:00
|
|
|
if (this.video.livestream) {
|
2021-06-09 21:21:35 +00:00
|
|
|
uri = this.video.hls;
|
2021-09-05 13:12:27 +00:00
|
|
|
mime = "application/x-mpegURL";
|
2021-08-30 15:48:08 +00:00
|
|
|
} else if (this.video.audioStreams.length > 0 && !lbry && MseSupport) {
|
2021-08-15 19:54:34 +00:00
|
|
|
if (!this.video.dash) {
|
2021-12-29 00:33:15 +00:00
|
|
|
const dash = (
|
|
|
|
await import("@/utils/DashUtils.js").then(mod => mod.default)
|
|
|
|
).generate_dash_file_from_formats(streams, this.video.duration);
|
2021-06-09 21:21:35 +00:00
|
|
|
|
2021-08-15 19:54:34 +00:00
|
|
|
uri = "data:application/dash+xml;charset=utf-8;base64," + btoa(dash);
|
|
|
|
} else uri = this.video.dash;
|
2021-09-05 13:12:27 +00:00
|
|
|
mime = "application/dash+xml";
|
2021-07-28 08:02:23 +00:00
|
|
|
} else if (lbry) {
|
|
|
|
uri = lbry.url;
|
2021-09-02 13:46:27 +00:00
|
|
|
if (this.getPreferenceBoolean("proxyLBRY", false)) {
|
|
|
|
const url = new URL(uri);
|
2021-11-24 17:36:29 +00:00
|
|
|
const proxyURL = new URL(this.video.proxyUrl);
|
|
|
|
let proxyPath = proxyURL.pathname;
|
|
|
|
if (proxyPath.lastIndexOf("/") === proxyPath.length - 1) {
|
|
|
|
proxyPath = proxyPath.substring(0, proxyPath.length - 1);
|
|
|
|
}
|
|
|
|
|
2021-09-02 13:46:27 +00:00
|
|
|
url.searchParams.set("host", url.host);
|
2021-11-24 17:36:29 +00:00
|
|
|
url.protocol = proxyURL.protocol;
|
|
|
|
url.host = proxyURL.host;
|
|
|
|
url.pathname = proxyPath + url.pathname;
|
2021-09-02 13:46:27 +00:00
|
|
|
uri = url.toString();
|
|
|
|
}
|
2021-09-05 13:12:27 +00:00
|
|
|
const contentType = await fetch(uri, {
|
|
|
|
method: "HEAD",
|
|
|
|
}).then(response => response.headers.get("Content-Type"));
|
|
|
|
mime = contentType;
|
2021-11-07 18:40:42 +00:00
|
|
|
} else if (this.video.hls) {
|
|
|
|
uri = this.video.hls;
|
|
|
|
mime = "application/x-mpegURL";
|
2021-06-18 13:20:41 +00:00
|
|
|
} else {
|
2021-07-10 19:59:21 +00:00
|
|
|
uri = this.video.videoStreams.filter(stream => stream.codec == null).slice(-1)[0].url;
|
2021-09-05 13:12:27 +00:00
|
|
|
mime = "video/mp4";
|
2021-06-09 21:21:35 +00:00
|
|
|
}
|
2021-05-06 17:30:02 +00:00
|
|
|
|
|
|
|
if (noPrevPlayer)
|
2021-07-09 20:55:09 +00:00
|
|
|
this.shakaPromise.then(() => {
|
|
|
|
this.shaka.polyfill.installAll();
|
|
|
|
|
|
|
|
const localPlayer = new this.shaka.Player(videoEl);
|
2021-11-24 17:36:29 +00:00
|
|
|
const proxyURL = new URL(component.video.proxyUrl);
|
|
|
|
let proxyPath = proxyURL.pathname;
|
|
|
|
if (proxyPath.lastIndexOf("/") === proxyPath.length - 1) {
|
|
|
|
proxyPath = proxyPath.substring(0, proxyPath.length - 1);
|
|
|
|
}
|
2021-07-09 20:55:09 +00:00
|
|
|
|
|
|
|
localPlayer.getNetworkingEngine().registerRequestFilter((_type, request) => {
|
|
|
|
const uri = request.uris[0];
|
|
|
|
var url = new URL(uri);
|
2021-09-05 13:12:27 +00:00
|
|
|
const headers = request.headers;
|
|
|
|
if (
|
|
|
|
url.host.endsWith(".googlevideo.com") ||
|
|
|
|
(url.host.endsWith(".lbryplayer.xyz") &&
|
|
|
|
(component.getPreferenceBoolean("proxyLBRY", false) || headers.Range))
|
|
|
|
) {
|
2021-07-09 20:55:09 +00:00
|
|
|
url.searchParams.set("host", url.host);
|
2021-11-24 17:36:29 +00:00
|
|
|
url.protocol = proxyURL.protocol;
|
|
|
|
url.host = proxyURL.host;
|
|
|
|
url.pathname = proxyPath + url.pathname;
|
2021-07-09 20:55:09 +00:00
|
|
|
request.uris[0] = url.toString();
|
|
|
|
}
|
2021-11-24 17:36:29 +00:00
|
|
|
if (url.pathname === proxyPath + "/videoplayback") {
|
2021-08-25 20:32:56 +00:00
|
|
|
if (headers.Range) {
|
|
|
|
url.searchParams.set("range", headers.Range.split("=")[1]);
|
|
|
|
request.headers = {};
|
|
|
|
request.uris[0] = url.toString();
|
|
|
|
}
|
|
|
|
}
|
2021-07-09 20:55:09 +00:00
|
|
|
});
|
2021-06-09 21:21:35 +00:00
|
|
|
|
2021-07-09 20:55:09 +00:00
|
|
|
localPlayer.configure(
|
|
|
|
"streaming.bufferingGoal",
|
|
|
|
Math.max(this.getPreferenceNumber("bufferGoal", 10), 10),
|
|
|
|
);
|
2021-06-22 10:54:20 +00:00
|
|
|
|
2021-09-05 13:12:27 +00:00
|
|
|
this.setPlayerAttrs(localPlayer, videoEl, uri, mime, this.shaka);
|
2021-07-09 20:55:09 +00:00
|
|
|
});
|
2021-10-06 14:33:52 +00:00
|
|
|
else this.setPlayerAttrs(this.$player, videoEl, uri, mime, this.shaka);
|
2021-05-06 17:30:02 +00:00
|
|
|
|
|
|
|
if (noPrevPlayer) {
|
|
|
|
videoEl.addEventListener("timeupdate", () => {
|
2021-10-27 00:15:37 +00:00
|
|
|
const time = videoEl.currentTime;
|
|
|
|
this.updateProgressDatabase(time);
|
2021-05-06 17:30:02 +00:00
|
|
|
if (this.sponsors && this.sponsors.segments) {
|
|
|
|
this.sponsors.segments.map(segment => {
|
2021-07-07 22:21:44 +00:00
|
|
|
if (!segment.skipped || this.selectedAutoLoop) {
|
2021-05-06 17:30:02 +00:00
|
|
|
const end = segment.segment[1];
|
|
|
|
if (time >= segment.segment[0] && time < end) {
|
|
|
|
console.log("Skipped segment at " + time);
|
|
|
|
videoEl.currentTime = end;
|
|
|
|
segment.skipped = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
videoEl.addEventListener("volumechange", () => {
|
2021-07-04 18:26:02 +00:00
|
|
|
this.setPreference("volume", videoEl.volume);
|
2021-05-06 17:30:02 +00:00
|
|
|
});
|
|
|
|
|
2021-10-03 19:18:04 +00:00
|
|
|
videoEl.addEventListener("ratechange", () => {
|
|
|
|
this.setPreference("rate", videoEl.playbackRate);
|
2021-10-08 16:38:01 +00:00
|
|
|
});
|
2021-10-03 19:18:04 +00:00
|
|
|
|
2021-05-06 17:30:02 +00:00
|
|
|
videoEl.addEventListener("ended", () => {
|
2021-07-04 18:42:10 +00:00
|
|
|
if (!this.selectedAutoLoop && this.selectedAutoPlay && this.video.relatedStreams.length > 0) {
|
2021-06-24 18:39:22 +00:00
|
|
|
const params = this.$route.query;
|
|
|
|
let url = this.video.relatedStreams[0].url;
|
|
|
|
const searchParams = new URLSearchParams();
|
|
|
|
for (var param in params)
|
|
|
|
switch (param) {
|
|
|
|
case "v":
|
|
|
|
case "t":
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
searchParams.set(param, params[param]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
const paramStr = searchParams.toString();
|
|
|
|
if (paramStr.length > 0) url += "&" + paramStr;
|
|
|
|
this.$router.push(url);
|
|
|
|
}
|
2021-05-06 17:30:02 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
//TODO: Add sponsors on seekbar: https://github.com/ajayyy/SponsorBlock/blob/e39de9fd852adb9196e0358ed827ad38d9933e29/src/js-components/previewBar.ts#L12
|
|
|
|
},
|
2021-09-05 13:12:27 +00:00
|
|
|
setPlayerAttrs(localPlayer, videoEl, uri, mime, shaka) {
|
2021-11-11 08:16:00 +00:00
|
|
|
const url = "/watch?v=" + this.video.id;
|
|
|
|
|
2021-10-06 14:33:52 +00:00
|
|
|
if (!this.$ui) {
|
2021-11-11 08:16:00 +00:00
|
|
|
const OpenButton = class extends shaka.ui.Element {
|
|
|
|
constructor(parent, controls) {
|
|
|
|
super(parent, controls);
|
|
|
|
|
|
|
|
this.newTabButton_ = document.createElement("button");
|
|
|
|
this.newTabButton_.classList.add("shaka-cast-button");
|
|
|
|
this.newTabButton_.classList.add("shaka-tooltip");
|
|
|
|
this.newTabButton_.ariaPressed = "false";
|
|
|
|
|
|
|
|
this.newTabIcon_ = document.createElement("i");
|
|
|
|
this.newTabIcon_.classList.add("material-icons-round");
|
|
|
|
this.newTabIcon_.textContent = "launch";
|
|
|
|
this.newTabButton_.appendChild(this.newTabIcon_);
|
|
|
|
|
|
|
|
const label = document.createElement("label");
|
|
|
|
label.classList.add("shaka-overflow-button-label");
|
|
|
|
label.classList.add("shaka-overflow-menu-only");
|
|
|
|
this.newTabNameSpan_ = document.createElement("span");
|
|
|
|
this.newTabNameSpan_.innerText = "Open in new tab";
|
|
|
|
label.appendChild(this.newTabNameSpan_);
|
|
|
|
|
|
|
|
this.newTabButton_.appendChild(label);
|
|
|
|
this.parent.appendChild(this.newTabButton_);
|
|
|
|
|
|
|
|
this.eventManager.listen(this.newTabButton_, "click", () => {
|
|
|
|
this.video.pause();
|
|
|
|
window.open(url);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
OpenButton.Factory = class {
|
|
|
|
create(rootElement, controls) {
|
|
|
|
return new OpenButton(rootElement, controls);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
shaka.ui.OverflowMenu.registerElement("open_new_tab", new OpenButton.Factory());
|
|
|
|
|
2021-10-06 14:33:52 +00:00
|
|
|
this.$ui = new shaka.ui.Overlay(localPlayer, this.$refs.container, videoEl);
|
2021-06-07 19:22:29 +00:00
|
|
|
|
2021-11-11 08:16:00 +00:00
|
|
|
const overflowMenuButtons = ["quality", "captions", "picture_in_picture", "playback_rate", "airplay"];
|
|
|
|
|
|
|
|
if (this.isEmbed) {
|
|
|
|
overflowMenuButtons.push("open_new_tab");
|
|
|
|
}
|
|
|
|
|
2021-06-07 19:22:29 +00:00
|
|
|
const config = {
|
2021-11-11 08:16:00 +00:00
|
|
|
overflowMenuButtons: overflowMenuButtons,
|
2021-06-07 19:22:29 +00:00
|
|
|
seekBarColors: {
|
|
|
|
base: "rgba(255, 255, 255, 0.3)",
|
|
|
|
buffered: "rgba(255, 255, 255, 0.54)",
|
|
|
|
played: "rgb(255, 0, 0)",
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2021-10-06 14:33:52 +00:00
|
|
|
this.$ui.configure(config);
|
2021-06-07 19:22:29 +00:00
|
|
|
}
|
|
|
|
|
2021-10-06 14:33:52 +00:00
|
|
|
const player = this.$ui.getControls().getPlayer();
|
2021-06-07 19:22:29 +00:00
|
|
|
|
2021-10-06 14:33:52 +00:00
|
|
|
this.$player = player;
|
2021-06-07 19:22:29 +00:00
|
|
|
|
2021-07-03 19:24:09 +00:00
|
|
|
const disableVideo = this.getPreferenceBoolean("listen", false) && !this.video.livestream;
|
2021-07-15 08:41:36 +00:00
|
|
|
|
2021-10-06 14:33:52 +00:00
|
|
|
this.$player.configure({
|
2021-07-21 10:48:59 +00:00
|
|
|
preferredVideoCodecs: this.preferredVideoCodecs,
|
2021-07-15 08:41:36 +00:00
|
|
|
preferredAudioCodecs: ["opus", "mp4a"],
|
|
|
|
manifest: {
|
|
|
|
disableVideo: disableVideo,
|
2021-11-07 13:52:40 +00:00
|
|
|
hls: {
|
|
|
|
useFullSegmentsForStartTime: true,
|
|
|
|
},
|
2021-07-15 08:41:36 +00:00
|
|
|
},
|
|
|
|
});
|
2021-06-07 20:35:45 +00:00
|
|
|
|
2021-07-04 18:26:02 +00:00
|
|
|
const quality = this.getPreferenceNumber("quality", 0);
|
2021-07-15 08:41:36 +00:00
|
|
|
const qualityConds =
|
|
|
|
quality > 0 && (this.video.audioStreams.length > 0 || this.video.livestream) && !disableVideo;
|
2021-10-06 14:33:52 +00:00
|
|
|
if (qualityConds) this.$player.configure("abr.enabled", false);
|
2021-06-21 20:03:11 +00:00
|
|
|
|
2021-09-05 13:12:27 +00:00
|
|
|
player.load(uri, 0, mime).then(() => {
|
2021-06-21 20:03:11 +00:00
|
|
|
if (qualityConds) {
|
|
|
|
var leastDiff = Number.MAX_VALUE;
|
|
|
|
var bestStream = null;
|
|
|
|
player
|
|
|
|
.getVariantTracks()
|
|
|
|
.sort((a, b) => a.bandwidth - b.bandwidth)
|
|
|
|
.forEach(stream => {
|
|
|
|
const diff = Math.abs(quality - stream.height);
|
|
|
|
if (diff < leastDiff) {
|
|
|
|
leastDiff = diff;
|
|
|
|
bestStream = stream;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
player.selectVariantTrack(bestStream);
|
|
|
|
}
|
|
|
|
|
2021-05-06 17:30:02 +00:00
|
|
|
this.video.subtitles.map(subtitle => {
|
|
|
|
player.addTextTrackAsync(
|
|
|
|
subtitle.url,
|
|
|
|
subtitle.code,
|
|
|
|
"SUBTITLE",
|
|
|
|
subtitle.mimeType,
|
|
|
|
null,
|
|
|
|
subtitle.name,
|
|
|
|
);
|
|
|
|
});
|
2021-07-04 18:26:02 +00:00
|
|
|
videoEl.volume = this.getPreferenceNumber("volume", 1);
|
2021-10-26 17:25:43 +00:00
|
|
|
player.trickPlay(this.getPreferenceNumber("rate", 1));
|
2021-05-06 17:30:02 +00:00
|
|
|
});
|
|
|
|
},
|
2021-10-27 00:15:37 +00:00
|
|
|
async updateProgressDatabase(time) {
|
|
|
|
// debounce
|
|
|
|
if (new Date().getTime() - this.lastUpdate < 500) return;
|
|
|
|
this.lastUpdate = new Date().getTime();
|
|
|
|
|
2021-11-11 08:16:00 +00:00
|
|
|
if (!this.video.id || !window.db) return;
|
2021-10-27 00:15:37 +00:00
|
|
|
|
|
|
|
var tx = window.db.transaction("watch_history", "readwrite");
|
|
|
|
var store = tx.objectStore("watch_history");
|
2021-11-11 08:16:00 +00:00
|
|
|
var request = store.get(this.video.id);
|
2022-01-01 14:53:55 +00:00
|
|
|
request.onsuccess = function (event) {
|
2021-10-27 00:15:37 +00:00
|
|
|
var video = event.target.result;
|
|
|
|
if (video) {
|
|
|
|
video.currentTime = time;
|
|
|
|
store.put(video);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
},
|
2022-01-13 04:52:14 +00:00
|
|
|
seek(time) {
|
|
|
|
if (this.$refs.videoEl) {
|
|
|
|
this.$refs.videoEl.currentTime = time;
|
|
|
|
}
|
|
|
|
},
|
2021-09-05 20:53:59 +00:00
|
|
|
destroy() {
|
2021-10-06 14:33:52 +00:00
|
|
|
if (this.$ui) {
|
|
|
|
this.$ui.destroy();
|
|
|
|
this.$ui = undefined;
|
|
|
|
this.$player = undefined;
|
2021-09-05 20:53:59 +00:00
|
|
|
}
|
2021-10-06 14:33:52 +00:00
|
|
|
if (this.$player) {
|
|
|
|
this.$player.destroy();
|
|
|
|
this.$player = undefined;
|
2021-09-05 20:53:59 +00:00
|
|
|
}
|
|
|
|
if (this.hotkeys) this.hotkeys.unbind();
|
|
|
|
if (this.$refs.container) this.$refs.container.querySelectorAll("div").forEach(node => node.remove());
|
|
|
|
},
|
2021-05-06 17:30:02 +00:00
|
|
|
},
|
2021-04-01 15:13:35 +00:00
|
|
|
};
|
|
|
|
</script>
|
2021-10-08 18:52:51 +00:00
|
|
|
|
|
|
|
<style>
|
|
|
|
.shaka-text-container > div {
|
|
|
|
height: auto !important;
|
|
|
|
width: auto !important;
|
|
|
|
top: auto !important;
|
|
|
|
left: auto !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shaka-text-container * {
|
|
|
|
background-color: rgba(8, 8, 8, 0.75) !important;
|
|
|
|
color: white !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.shaka-video-container:-webkit-full-screen {
|
|
|
|
max-height: none !important;
|
|
|
|
}
|
|
|
|
</style>
|