Loading STRM fies from webserver
#1
Hello,

Is it possible to load STRM's from a webserver? (XML or HTTP)

Normal working STRM file:
plugin://plugin.program.pneumatic/?mode=strm&type=add_file&nzb=D:\foo\bar.nzb&nzbname=bar

I tried changing the STRM file to http and add the webserver to XBMC as a HTTP.
plugin://plugin.program.pneumatic/?mode=strm&type=add_file&nzb=http://www.foo.dk/bar.nzb&nzbname=bar

When I press enter to open the server there is no files displayed. If this is possible how should the webserver respond? Also tried with XML, but no results.

Code:
<item>
  <title>bar</title>
  <link>plugin://plugin.program.pneumatic/?mode=strm&amp;type=add_file&amp;nzb=foo.nzb&amp;nzbname=bar</link>
</item>
Reply
#2
It depends on how the addon handles those parameters. As far as xbmc is concerned, it only deals with the first part: plugin://plugin.program.pneumatic

Everything after that is handled by the addon. I'm assuming this is a formatting error, but if not, it could be the source of your problem. Your link above contains "&amp;" which is the html entity for "&"

The addon will understand "&" but not "&amp;"
Reply
#3
Okay, thank you for clearing this out.
Reply

Logout Mark Read Team Forum Stats Members Help
Loading STRM fies from webserver0