mirror of
https://github.com/vega-org/vega-providers.git
synced 2026-04-17 23:51:44 +00:00
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import { Stream, ProviderContext, TextTrackType, TextTracks } from "../types";
|
|
|
|
export const getStream = async function ({
|
|
link: id,
|
|
providerContext,
|
|
}: {
|
|
link: string;
|
|
providerContext: ProviderContext;
|
|
}): Promise<Stream[]> {
|
|
try {
|
|
const { axios, getBaseUrl } = providerContext;
|
|
const streamLinks: Stream[] = [];
|
|
const subtitles: TextTracks = [];
|
|
const baseUrl = await getBaseUrl("kissKh");
|
|
const streamUrl =
|
|
"https://adorable-salamander-ecbb21.netlify.app/api/kisskh/video?id=" +
|
|
id;
|
|
const res = await axios.get(streamUrl);
|
|
const stream = res.data?.source?.Video;
|
|
const subData = res.data?.subtitles;
|
|
subData?.map((sub: any) => {
|
|
subtitles.push({
|
|
title: sub?.label,
|
|
language: sub?.land,
|
|
type: sub?.src?.includes(".vtt")
|
|
? TextTrackType.VTT
|
|
: TextTrackType.SUBRIP,
|
|
uri: sub?.src,
|
|
});
|
|
});
|
|
streamLinks.push({
|
|
server: "kissKh",
|
|
link: stream,
|
|
type: "m3u8",
|
|
subtitles,
|
|
headers: {
|
|
referer: baseUrl,
|
|
},
|
|
});
|
|
return streamLinks;
|
|
} catch (err) {
|
|
console.error(err);
|
|
return [];
|
|
}
|
|
};
|