I have some playlists with just one radiostream.
It was working fine with old mopidy 1.0.8. Klick the playlist and than mopidy was playing the stream. Very nice.
Since the new 1.1.0 version its not working?
Are there any changes
mopidy is running on pi2 with jessie.
extensions:
mopify,
mpd, alsamixer, http, file, stream, mobile, podcast-gpodder, m3u,
simple-webclient, material-webclient, softwaremixer, moped, musicbox_webclient,
api_explorer, podcast, local, soundcloud
Ah, yes, this is a drawback of the change in 1.1 that I hadn’t thought about previously. Due to the change, we no longer support M3U files referring to other M3U files.
For example, your RadioBayern2.m3u contains:
http://streams.br.de/bayern2nord_2.m3u
This file again contains the actual radio streams.
To work around this, simply replace your M3U files with the M3U files they link to.
Technical explanation: Previously, our GStreamer setup supported downloading and parsing playlists, and did this recursively until it found something that was playable. In 1.1.0 we moved this code out of our GStreamer setup to prepare for the upgrade to GStreamer 1.x. It is now done by the bundled Mopidy-Stream extension instead. The stream extension does not support playlists referring to other playlists. It simply downloads the playlist, find the first URI, and passes it to GStreamer for playback. If the first URI is a playlist, then GStreamer does not know what to with it, and playback never happens.