feat(extractors): added anime extractors

This commit is contained in:
Ritesh Ghosh
2023-08-17 23:46:13 +05:30
parent eaa384a83e
commit e335910e7a
4 changed files with 281 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
import axios from "axios";
import { load, CheerioAPI } from "cheerio";
import { Video } from "../models/extractor";
class StreamTape {
private serverName = "StreamTape";
private sources: Video[] = [];
async extract(videoUrl: URL): Promise<Video[]> {
try {
const { data } = await axios.get(videoUrl.href).catch(() => {
throw new Error("Video not found");
});
const $: CheerioAPI = load(data);
let [fh, sh] = $.html()
?.match(/robotlink'\).innerHTML = (.*)'/)![1]
.split("+ ('");
sh = sh.substring(3);
fh = fh.replace(/\'/g, "");
const url = `https:${fh}${sh}`;
this.sources.push({
url: url,
isM3U8: url.includes(".m3u8"),
});
return this.sources;
} catch (err) {
throw new Error((err as Error).message);
}
}
}
export default StreamTape;