This commit is contained in:
himanshu8443
2025-06-16 22:35:39 +05:30
parent 4c95efcb5b
commit a21dad9698
123 changed files with 8099 additions and 159 deletions

39
dist/netflixMirror/stream.js vendored Normal file
View File

@@ -0,0 +1,39 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.getStream = void 0;
const getStream = async ({ link: id, providerContext, }) => {
const { getBaseUrl } = providerContext;
try {
let providerValue = "netflixMirror";
const baseUrl = await getBaseUrl("nfMirror");
const url = `https://netmirror.8man.me/api/net-proxy?url=${baseUrl}${providerValue === "netflixMirror"
? "/mobile/playlist.php?id="
: "/pv/playlist.php?id="}${id}&t=${Math.round(new Date().getTime() / 1000)}`;
console.log("nfGetStream, url:", url);
const res = await fetch(url, {
credentials: "omit",
});
const resJson = await res.json();
const data = resJson?.[0];
const streamLinks = [];
data?.sources.forEach((source) => {
streamLinks.push({
server: source.label,
link: (baseUrl + source.file)?.replace(":su", ":ni"),
type: "m3u8",
headers: {
Referer: baseUrl,
origin: baseUrl,
Cookie: "hd=on",
},
});
});
console.log(streamLinks);
return streamLinks;
}
catch (err) {
console.error(err);
return [];
}
};
exports.getStream = getStream;