OK for those that don't want to use a UPnP client to stream Tidal to Moode's renderer here are a few commands that will download the umpmdcli source, get their current Tidal preview token and insert it into the appropriate file on Moode...
Login to a shell on your Pi running Moode via ssh as the user pi and run..
Restart your UPnP renderer in the web interface.
Works for me right now, if their token changes upstream you just redo this.
I'd still recommend to not use the Moode-mediaserver for Tidal right now but this should at least get those who rely on this going for the time being.
Hope that helps.
Login to a shell on your Pi running Moode via ssh as the user pi and run..
Code:
git clone https://framagit.org/medoc92/upmpdcli
token=$(grep self.preview.token upmpdcli/src/mediaserver/cdplugins/tidal/tidalapi/__init__.py | sed -e 's/.* \"//' -e 's/\" .*$//')
sudo sed -i "s/self.api_token.*/self.api_token = '$token'/" /usr/share/upmpdcli/cdplugins/tidal/tidalapi/__init__.py
rm -rf upmpdcli
Restart your UPnP renderer in the web interface.
Works for me right now, if their token changes upstream you just redo this.
I'd still recommend to not use the Moode-mediaserver for Tidal right now but this should at least get those who rely on this going for the time being.
Hope that helps.