Open
Description
I'm hosting my music on a server and I'm streaming from it using my laptop. The server runs python web server in my music directory:
python3 -m http.server
mpd instance on a server is used only so that client mpd instance can fetch database from it. Relevant config on a client (laptop):
music_directory "http://my_server"
database {
plugin "proxy"
host "my_server"
port "6600"
}
This works fine. I can see my music and play anything I want on a laptop. However, on a server I have lots of playlists which aren't loaded because I can't do this:
playlist_directory "http://my_server/Playlists"
mpd complains that the path for playlists must be absolute. Is this intended? Am I doing something wrong?