feat(embed): add mp4upload embed scraper

This commit is contained in:
Jordaar 2023-06-16 16:12:07 +05:30
parent e912ea4715
commit 9003bf6788
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,32 @@
import { MWEmbedType } from "@/backend/helpers/embed";
import { registerEmbedScraper } from "@/backend/helpers/register";
import { MWStreamQuality, MWStreamType } from "@/backend/helpers/streams";
import { proxiedFetch } from "../helpers/fetch";
registerEmbedScraper({
id: "mp4upload",
displayName: "mp4upload",
for: MWEmbedType.MP4UPLOAD,
rank: 170,
async getStream({ url }) {
const embed = await proxiedFetch<any>(url);
const playerSrcRegex =
/(?<=player\.src\()\s*{\s*type:\s*"[^"]+",\s*src:\s*"([^"]+)"\s*}\s*(?=\);)/s;
const playerSrc = embed.match(playerSrcRegex);
const streamUrl = playerSrc[1];
if (!streamUrl) throw new Error("Stream url not found");
return {
embedId: MWEmbedType.MP4UPLOAD,
streamUrl,
quality: MWStreamQuality.Q1080P,
captions: [],
type: MWStreamType.MP4,
};
},
});

View File

@ -17,5 +17,6 @@ import "./embeds/streamm4u";
import "./embeds/playm4u"; import "./embeds/playm4u";
import "./embeds/upcloud"; import "./embeds/upcloud";
import "./embeds/streamsb"; import "./embeds/streamsb";
import "./embeds/mp4upload";
initializeScraperStore(); initializeScraperStore();