-
Notifications
You must be signed in to change notification settings - Fork 317
Description
Hello,
I'm trying to pass subtitles together with streams url in stream response in my addon, but it does not work and subtitles are not loaded in streamio.
Accoring https://github.com/Stremio/stremio-addon-sdk/blob/master/docs/api/responses/stream.md it should be possible.
What am I doing wrong? Or is it something obsolete?
Example:
{ "streams": [ { "behaviorHints": { "filename": "dfgdfgdfg541564" }, "name": "TEST VID HD", "subtitles": [ { "id": "EN", "lang": "en", "url": "https://test.test/video/1234556?test=subtitles&id=16541564" } ], "title": "test vid in HD", "url": "https://test.test/vid/test.mp4" } ] }
I also tried to set my addon to provide subtitles as resource and it works (separate subtitle request) but in stream response no luck.. Any idea?