Re: scanUrl not being called
Michael Herger <slim-b/[email protected]>
| Newsgroups | gmane.music.equipment.slimdevices.devel |
|---|---|
| Message-ID | <[email protected]> |
> In a plugin, I am trying to replace the display of a stream URL with a > local protocol handler version. What do you mean by "the display of a stream URL"? A protocol handler (PH) would deal with a URL of a specific protocol. Eg. your protocol would be "myplugin". So myplugin:someStation would be handled by your PH. A PH is not there to customize behaviour of http://mystation/stream, but to "mask" it. Eg. radioparadise://1.flac would be the Mellow station. Only once the PH is called to getNextTrack() it would return the real http URL. But in LMS you'd almost always see radioparadise://1.flac, and not the http URL. I probably don't understand what you're trying to do.