mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-11 00:05:09 +01:00
Gomostream can return either mp4 or m3u8
This commit is contained in:
parent
ccfd2efe90
commit
4eacd9f0c9
@ -88,7 +88,7 @@ export const gomostreamScraper: MWMediaProvider = {
|
||||
const index = unpacked.findIndex((e) => e === '"');
|
||||
const streamUrl = unpacked.slice(0, index).join('');
|
||||
|
||||
return { url: streamUrl, type: 'mp4', captions: [] };
|
||||
return { url: streamUrl, type: streamUrl.split('.').at(-1) || "mp4", captions: [] };
|
||||
},
|
||||
|
||||
async getSeasonDataFromMedia(media: MWPortableMedia): Promise<MWMediaSeasons> {
|
||||
|
@ -20,7 +20,8 @@ export interface MWMediaCaption {
|
||||
}
|
||||
export interface MWMediaStream {
|
||||
url: string;
|
||||
type: MWMediaStreamType;
|
||||
// type: MWMediaStreamType;
|
||||
type: string;
|
||||
captions: MWMediaCaption[];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user