Ahmidi Yasser

Results 34 comments of Ahmidi Yasser

> > how will you even ensure that the user has the port open to the internet for such a transaction? > > presuming that you know what you're doing,...

this option has been implemented across all platforms, under stream.behaviorHints.bingeGroup . please refer to the [docs](https://github.com/Stremio/stremio-addon-sdk/blob/master/docs/api/responses/stream.md#additional-properties-to-provide-information--behaviour-flags).

afaik this is only returned for torrent streams and not used for HTTP streams. are u testing using an HTTP stream (debrid for example)?

@yoanhg421 i would suggest opening a separate issue for your problem. and in the new issue, can u please provide a link to the addon so we can test it...

u can't identify users by default. but to use any user data in your addon, u can check [this part of the documentation](https://github.com/Stremio/stremio-addon-sdk/blob/master/docs/advanced.md#using-user-data-in-addons).

@elpaxel u can create M3U playlists containing your stream and audio files to add dubs on the fly. https://datatracker.ietf.org/doc/html/rfc8216#section-4.3.4.1 it would look something like this: ``` #EXTM3U #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio",LANGUAGE="en",NAME="English",DEFAULT=YES,AUTOSELECT=YES,URI="https://www.example.com/example1.mp3" #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio",LANGUAGE="fr",NAME="French",DEFAULT=NO,AUTOSELECT=YES,URI="https://www.example.com/example2.mp3" #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio",LANGUAGE="de",NAME="German",DEFAULT=NO,AUTOSELECT=YES,URI="https://www.example.com/example3.mp3"...

@elpaxel if the voiceovers are part of the video files then i don't see the point of all this, just return the streams and let the user decide which one...

@elpaxel you don't need to gather all the streams. u can make use of redirects [like torrentio does](https://github.com/TheBeastLT/torrentio-scraper/blob/a83eef99da1b338fd38bdba6e31891ba81f4ff37/addon/serverless.js#L83C1-L106C1) with debrid streams. for example: ``` { streams: [ url: 'youraddon.com/someroute/id/ep/dub1/server1/quality1', url:...

@elpaxel no idea what u mean by "useless" links. u can add config to filter streams as jaruba mentioned. and it's complete as u didn't provide any reason except that...

As a consequence, movies aren't accessible from the [library](https://web.stremio.com/#/library/movie). all movies, no matter which addon they were addon from (including cinemeta) show the "No videos found for this meta!". steps...