Piped/src/components/WatchVideo.vue

302 lines
11 KiB
Vue
Raw Normal View History

2020-11-11 09:20:57 +00:00
<template>
2020-11-17 05:15:35 +00:00
<div class="uk-container uk-container-xlarge">
2021-02-25 07:08:47 +00:00
<div data-shaka-player-container>
<video
data-shaka-player
controls
autoplay
style="width: 100%; height: 100%"
></video>
</div>
2020-11-22 04:31:14 +00:00
<h1 class="uk-text-bold">{{ video.title }}</h1>
2020-11-17 05:15:35 +00:00
2021-02-24 09:35:41 +00:00
<img :src="video.uploaderAvatar" loading="lazy" />
2020-11-17 05:15:35 +00:00
<router-link class="uk-text-bold" v-bind:to="video.uploaderUrl || '/'">
<a>{{ video.uploader }}</a>
</router-link>
2020-11-17 05:15:35 +00:00
<p class="uk-dark">
<font-awesome-icon icon="thumbs-down"></font-awesome-icon>
2020-11-27 06:46:36 +00:00
<b>{{ video.likes }}</b>
&nbsp;
2020-11-17 05:15:35 +00:00
<font-awesome-icon icon="thumbs-up"></font-awesome-icon>
2020-11-27 06:46:36 +00:00
<b>{{ video.dislikes }}</b>
2020-11-17 05:15:35 +00:00
</p>
<p>
<font-awesome-icon icon="eye"></font-awesome-icon>
2020-11-27 06:46:36 +00:00
<b>{{ video.views }}</b> views
</p>
<p>
Uploaded on <b>{{ video.uploadDate }}</b>
</p>
<a
class="uk-button uk-button-small"
style="background: #222"
@click="showDesc = !showDesc"
>
{{ showDesc ? "+" : "-" }}
</a>
2021-01-20 15:49:21 +00:00
<p v-show="showDesc" class="uk-light" v-html="video.description"></p>
2020-11-17 05:15:35 +00:00
<a v-if="sponsors && sponsors.segments"
>Sponsors Segments: {{ sponsors.segments.length }}</a
>
<hr />
2020-12-10 07:53:30 +00:00
<b>Auto Play next Video:</b>&nbsp;
<input
class="uk-checkbox"
v-model="selectedAutoPlay"
@change="onChange($event)"
type="checkbox"
/>
2020-11-17 05:15:35 +00:00
<div
class="uk-tile-default uk-text-secondary"
style="background: #0b0e0f; width: 300px"
v-bind:key="related.url"
v-for="related in video.relatedStreams"
>
<router-link class="uk-link-muted" v-bind:to="related.url">
<p class="uk-text-emphasis">{{ related.title }}</p>
2021-02-24 09:35:41 +00:00
<img
style="width: 100%"
v-bind:src="related.thumbnail"
loading="lazy"
/>
2020-11-17 05:15:35 +00:00
</router-link>
<p>
<router-link
class="uk-link-muted"
v-bind:to="related.uploaderUrl || '/'"
>
<p>{{ related.uploaderName }}</p>
</router-link>
<font-awesome-icon icon="eye"></font-awesome-icon>
{{ related.views }} views
</p>
</div>
</div>
2020-11-11 09:20:57 +00:00
</template>
<script>
2021-02-25 07:08:47 +00:00
import "shaka-player/dist/shaka-player.ui.js";
import("shaka-player/dist/controls.css");
const shaka = import("shaka-player/dist/shaka-player.ui.js");
2020-11-11 09:20:57 +00:00
import Constants from "@/Constants.js";
export default {
name: "App",
data() {
return {
video: {
2020-11-17 05:15:35 +00:00
title: "Loading..."
2020-11-11 09:20:57 +00:00
},
player: null,
2020-11-15 20:02:11 +00:00
audioplayer: null,
2020-12-14 13:41:49 +00:00
sponsors: null,
selectedAutoPlay: null,
showDesc: true
2020-11-11 09:20:57 +00:00
};
},
mounted() {
2020-12-14 13:41:49 +00:00
this.selectedAutoPlay = Constants.AUTO_PLAY;
2020-11-11 09:20:57 +00:00
this.getVideoData();
this.getSponsors();
},
beforeUnmount() {
if (this.player) {
this.player.dispose();
}
2020-11-15 20:02:11 +00:00
if (this.audioplayer) {
2020-11-17 05:15:35 +00:00
this.audioplayer.pause();
2020-11-15 20:02:11 +00:00
}
2020-11-11 09:20:57 +00:00
},
watch: {
2020-11-17 05:15:35 +00:00
"$route.query.v": function(v) {
2020-11-11 09:20:57 +00:00
if (v) {
2020-11-17 05:15:35 +00:00
if (this.audioplayer) this.audioplayer.pause();
2020-11-11 09:20:57 +00:00
this.getVideoData();
this.getSponsors();
}
2020-11-17 05:15:35 +00:00
}
2020-11-11 09:20:57 +00:00
},
methods: {
2021-02-24 09:35:41 +00:00
fetchVideo() {
return this.fetchJson(
Constants.BASE_URL + "/streams/" + this.$route.query.v
);
2020-11-11 09:20:57 +00:00
},
async fetchSponsors() {
2021-02-24 09:35:41 +00:00
await this.fetchJson(
Constants.BASE_URL +
"/sponsors/" +
this.$route.query.v +
'?category=["sponsor","interaction","selfpromo","music_offtopic"]'
);
2020-11-11 09:20:57 +00:00
},
2020-12-10 07:53:30 +00:00
onChange() {
if (localStorage)
localStorage.setItem("autoplay", this.selectedAutoPlay);
},
2020-11-11 09:20:57 +00:00
async getVideoData() {
this.fetchVideo()
2021-02-24 09:35:41 +00:00
.then(data => {
this.video = data;
})
2020-11-11 09:20:57 +00:00
.then(() => {
document.title = this.video.title + " - Piped";
2020-11-17 05:15:35 +00:00
this.video.description = this.video.description
.replaceAll("http://www.youtube.com", "")
2021-01-20 15:49:21 +00:00
.replaceAll("https://www.youtube.com", "")
.replaceAll("\n", "<br>");
2020-11-11 09:20:57 +00:00
2020-11-17 05:15:35 +00:00
const noPrevPlayer = !this.player;
2020-11-11 09:20:57 +00:00
2021-02-24 09:35:41 +00:00
var streams = [];
2021-01-07 08:28:31 +00:00
2021-02-24 09:35:41 +00:00
streams.push(...this.video.audioStreams);
streams.push(...this.video.videoStreams);
2020-11-11 09:20:57 +00:00
2021-02-24 09:35:41 +00:00
const dash = require("../utils/DashUtils.js").default.generate_dash_file_from_formats(
streams,
this.video.duration
);
2020-11-11 09:20:57 +00:00
2021-02-24 18:42:11 +00:00
const WatchVideo = this;
const videoEl = document.querySelector("video");
2021-02-24 09:35:41 +00:00
if (noPrevPlayer) {
setTimeout(function() {
shaka
.then(shaka => shaka.default)
.then(shaka => {
shaka.polyfill.installAll();
2021-02-24 18:42:11 +00:00
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"
);
player.setTextTrackVisibility(
true
);
}
);
if (localStorage)
videoEl.volume =
localStorage.getItem(
"volume"
) || 1;
2021-02-25 07:08:47 +00:00
const ui = new shaka.ui.Overlay(
player,
document.querySelector(
"div[data-shaka-player-container]"
),
videoEl
);
const config = {
2021-02-25 07:10:32 +00:00
overflowMenuButtons: [
"quality",
"captions",
"playback_rate"
]
2021-02-25 07:08:47 +00:00
};
ui.configure(config);
2021-02-24 18:42:11 +00:00
});
2021-02-24 09:35:41 +00:00
2021-02-24 18:42:11 +00:00
videoEl.setAttribute(
"poster",
WatchVideo.video.thumbnailUrl
2021-02-24 09:35:41 +00:00
);
});
}, 0);
}
2020-11-22 04:31:14 +00:00
2021-02-24 09:35:41 +00:00
if (this.$route.query.t)
this.player.currentTime(this.$route.query.t);
2021-02-24 18:42:11 +00:00
videoEl.addEventListener("loadedmetadata", function() {
const track = this.addTextTrack(
"captions",
"English",
"en"
);
track.mode = "showing";
});
2020-11-11 09:20:57 +00:00
2020-11-15 20:02:11 +00:00
if (noPrevPlayer) {
2021-02-24 18:42:11 +00:00
videoEl.addEventListener("timeupdate", () => {
if (
WatchVideo.sponsors &&
WatchVideo.sponsors.segments
) {
const time = videoEl.currentTime;
WatchVideo.sponsors.segments.map(segment => {
2020-11-11 09:20:57 +00:00
if (!segment.skipped) {
2020-11-17 05:15:35 +00:00
const end = segment.segment[1];
if (
time >= segment.segment[0] &&
time < end
) {
2021-02-24 18:42:11 +00:00
console.log(
"Skipped segment at " + time
);
videoEl.currentTime = end;
2020-11-17 05:15:35 +00:00
segment.skipped = true;
return;
2020-11-11 09:20:57 +00:00
}
}
2020-11-17 05:15:35 +00:00
});
2020-11-11 09:20:57 +00:00
}
2020-11-17 05:15:35 +00:00
});
2020-12-10 07:53:30 +00:00
2021-02-24 18:42:11 +00:00
videoEl.addEventListener("volumechange", () => {
if (localStorage)
localStorage.setItem("volume", videoEl.volume);
});
2021-02-24 09:35:41 +00:00
2021-02-24 18:42:11 +00:00
videoEl.addEventListener("ended", () => {
if (
WatchVideo.selectedAutoPlay &&
WatchVideo.video.relatedStreams.length > 0
)
WatchVideo.$router.push(
WatchVideo.video.relatedStreams[0].url
);
});
2020-11-15 20:02:11 +00:00
}
2020-11-17 05:15:35 +00:00
//const parent = this.player.el().querySelector(".vjs-progress-holder")
2020-11-11 09:20:57 +00:00
//TODO: Add sponsors on seekbar: https://github.com/ajayyy/SponsorBlock/blob/e39de9fd852adb9196e0358ed827ad38d9933e29/src/js-components/previewBar.ts#L12
});
},
async getSponsors() {
2020-11-17 05:15:35 +00:00
this.fetchSponsors().then(data => (this.sponsors = data));
}
}
2020-11-11 09:20:57 +00:00
};
</script>
<style>
.vjs-current-time {
display: block;
}
</style>