2022-01-06, 03:56
I have a number of public radar GIFs in STRM files on my local Android Kodi installation. For example, I have a file at I have it favorited, and the favorite looks like:
How can I make use of that same STRM file if it's hosted on a Web server? I have one set up at http://php1.rf.gd/testing/radar.strm, and I'd like to be able to drop that into a favorite on another Kodi installation. What I'm aiming for is a favorite which looks kinda like this:But I can't seem to find the right syntax for it. (Being able to access it via a hosted STRM file is desirable, as some of the ones I use have dynamic URLs which change frequently. Piping them into a STRM file so the URL is always current is an easy job from the server side.)
I've tried it with and without the schema, with backslashed paths, with XML escaped characters, and under numeric IP (which fails due to the shared hosting). I have FTP access to the hosting location, but I can't seem to create an FTP source in File Manager which can access it either. If STRM is impossible, might there be a way to drop that GIF into an M3U and use that instead? I'd prefer to avoid third-party addons if Kodi can do this natively.
Not the least bit afraid to RTFM, so if you have a link to more detailed documentation on STRM and Favorites than what's at the Kodi Wiki, I'd certainly appreciate it. Much thanks for any insight you can offer!
Code:
/storage/emulated/0/Streams/Radar.strm
Code:
<favourite name="US Conus">PlayMedia("/storage/emulated/0/Streams/Radar.strm")</favourite>
How can I make use of that same STRM file if it's hosted on a Web server? I have one set up at http://php1.rf.gd/testing/radar.strm, and I'd like to be able to drop that into a favorite on another Kodi installation. What I'm aiming for is a favorite which looks kinda like this:
Code:
<favourite name="US Conus">PlayMedia("http://php1.rf.gd/testing/radar.strm")</favourite>
I've tried it with and without the schema, with backslashed paths, with XML escaped characters, and under numeric IP (which fails due to the shared hosting). I have FTP access to the hosting location, but I can't seem to create an FTP source in File Manager which can access it either. If STRM is impossible, might there be a way to drop that GIF into an M3U and use that instead? I'd prefer to avoid third-party addons if Kodi can do this natively.
Not the least bit afraid to RTFM, so if you have a link to more detailed documentation on STRM and Favorites than what's at the Kodi Wiki, I'd certainly appreciate it. Much thanks for any insight you can offer!