faster superstream url

This commit is contained in:
mrjvs 2023-08-15 20:13:35 +02:00
parent 072b2d134b
commit 1524a3af39
1 changed files with 5 additions and 1 deletions

View File

@ -248,13 +248,17 @@ registerProvider({
const mappedCaptions = subtitleRes.list
.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: hdQuality.path,
streamUrl: fasterUrl.toString(),
type: MWStreamType.MP4,
captions: mappedCaptions,
},