mirror of
https://github.com/movie-web/providers.git
synced 2025-09-13 16:53:24 +00:00
Fix remotestream for real
This commit is contained in:
@@ -16,8 +16,12 @@ export const remotestreamScraper = makeSourcerer({
|
|||||||
const playlistLink = `${remotestreamBase}/Shows/${ctx.media.tmdbId}/${seasonNumber}/${episodeNumber}/${episodeNumber}.m3u8`;
|
const playlistLink = `${remotestreamBase}/Shows/${ctx.media.tmdbId}/${seasonNumber}/${episodeNumber}/${episodeNumber}.m3u8`;
|
||||||
|
|
||||||
ctx.progress(30);
|
ctx.progress(30);
|
||||||
const streamRes = await ctx.fetcher<Blob>(playlistLink); // TODO support blobs in fetchers
|
const streamRes = await ctx.fetcher.full(playlistLink, {
|
||||||
if (streamRes.type !== 'application/x-mpegurl') throw new NotFoundError('No watchable item found');
|
method: 'HEAD',
|
||||||
|
readHeaders: ['content-type'],
|
||||||
|
});
|
||||||
|
if (!streamRes.headers.get('content-type')?.toLowerCase().includes('application/x-mpegurl'))
|
||||||
|
throw new NotFoundError('No watchable item found');
|
||||||
ctx.progress(90);
|
ctx.progress(90);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
@@ -37,8 +41,12 @@ export const remotestreamScraper = makeSourcerer({
|
|||||||
const playlistLink = `${remotestreamBase}/Movies/${ctx.media.tmdbId}/${ctx.media.tmdbId}.m3u8`;
|
const playlistLink = `${remotestreamBase}/Movies/${ctx.media.tmdbId}/${ctx.media.tmdbId}.m3u8`;
|
||||||
|
|
||||||
ctx.progress(30);
|
ctx.progress(30);
|
||||||
const streamRes = await ctx.fetcher<Blob>(playlistLink);
|
const streamRes = await ctx.fetcher.full(playlistLink, {
|
||||||
if (streamRes.type !== 'application/x-mpegurl') throw new NotFoundError('No watchable item found');
|
method: 'HEAD',
|
||||||
|
readHeaders: ['content-type'],
|
||||||
|
});
|
||||||
|
if (!streamRes.headers.get('content-type')?.toLowerCase().includes('application/x-mpegurl'))
|
||||||
|
throw new NotFoundError('No watchable item found');
|
||||||
ctx.progress(90);
|
ctx.progress(90);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Reference in New Issue
Block a user