Unfortunately it doesn’t read streamlink configuration files
It's not hard to add. In principle, I thought to make the main styreamlink settings (session options) in the form of a GUI accessible from the plugins menu ... But the parameters for specific add-on plugins can be passed element-wise to url.fragment and this does not require streamlink configuration files
Example for https://streamlink.github.io/plugins.html#bbciplayer add-on
http://localhost:port/https://www.bbc.co.uk/iplayer/episodes/p0frq6zd/champion?seriesId=p0frq798?&bbciplayer-username=xxxx&bbciplayer-password=xxxxx&bbciplayer-hd=1
parameters passed to url.query are simply parsed and can be passed in proxy "HandleRequest" to the streamlink add-on plugin used to get a link to the video ... It's not difficult at all...
Some minor things like loglevel cannot be changed
The server code is so simple that I can't even imagine what to log there =)
an alternative to streamlinksrv
The difference is in more concise code =) and more or less correct implementation of chunked HTTP streaming - https://www.rfc-editor.org/rfc…2#field.transfer-encoding compare with how it is completely wrong implemented in streamlinksrv ![]()
