Make superstream a fast boi

This commit is contained in:
mrjvs 2023-08-15 20:19:25 +02:00
parent 1524a3af39
commit 31fcd22822

View File

@ -18,6 +18,12 @@ import { compareTitle } from "@/utils/titleMatch";
const nanoid = customAlphabet("0123456789abcdef", 32);
function makeFasterUrl(url: string) {
const fasterUrl = new URL(url);
fasterUrl.host = "mp4.shegu.net"; // this domain is faster
return fasterUrl.toString();
}
const qualityMap = {
"360p": MWStreamQuality.Q360P,
"480p": MWStreamQuality.Q480P,
@ -199,7 +205,7 @@ registerProvider({
return {
embeds: [],
stream: {
streamUrl: hdQuality.path,
streamUrl: makeFasterUrl(hdQuality.path),
quality: qualityMap[hdQuality.quality as QualityInMap],
type: MWStreamType.MP4,
captions: mappedCaptions,
@ -249,16 +255,13 @@ registerProvider({
.map(convertSubtitles)
.filter(Boolean);
const fasterUrl = new URL(hdQuality.path);
fasterUrl.host = "mp4.shegu.net"; // this domain is faster
return {
embeds: [],
stream: {
quality: qualityMap[
hdQuality.quality as QualityInMap
] as MWStreamQuality,
streamUrl: fasterUrl.toString(),
streamUrl: makeFasterUrl(hdQuality.path),
type: MWStreamType.MP4,
captions: mappedCaptions,
},