Limit stream types to mp4 or m3u8 for gomostream

This commit is contained in:
James Hawkins 2022-04-17 22:21:36 +01:00
parent 4eacd9f0c9
commit e30f2ee457
2 changed files with 5 additions and 3 deletions

View File

@ -88,7 +88,10 @@ export const gomostreamScraper: MWMediaProvider = {
const index = unpacked.findIndex((e) => e === '"');
const streamUrl = unpacked.slice(0, index).join('');
return { url: streamUrl, type: streamUrl.split('.').at(-1) || "mp4", captions: [] };
const streamType = streamUrl.split('.').at(-1);
if (streamType !== "mp4" && streamType !== "m3u8") throw new Error("Unsupported stream type");
return { url: streamUrl, type: streamType, captions: [] };
},
async getSeasonDataFromMedia(media: MWPortableMedia): Promise<MWMediaSeasons> {

View File

@ -20,8 +20,7 @@ export interface MWMediaCaption {
}
export interface MWMediaStream {
url: string;
// type: MWMediaStreamType;
type: string;
type: MWMediaStreamType;
captions: MWMediaCaption[];
}