yktoo / ymuse

GTK client for Music Player Daemon (MPD) written in Go
https://yktoo.com/en/software/ymuse/
Apache License 2.0
252 stars 14 forks source link

Playlists fail to load in Library #2

Open parkmino opened 4 years ago

parkmino commented 4 years ago

Library does not show playlist files, e.g., m3u and pls.

yktoo commented 4 years ago

That's right, they're filtered out. Do you think it's useful to show them there?

parkmino commented 4 years ago

I do not have playlist_directory in mpd.conf, it would be helpful for me.

yktoo commented 4 years ago

Showing playlists has been added in dev, but full support for loading playlists is unfortunately not possible yet. MPD requires specifying the absolute file path which I cannot obtain with the current version of gompd (it requires the config command).

Also, MPD only supports .m3u playlists out-of-the-box, .pls support requires a plugin.

parkmino commented 4 years ago

Thanks and I will try this release !

parkmino commented 4 years ago

Now m3u and pls playlists are visible in library, however it show the following error message. They are all http streams.

2020-05-21-173333_452x132_scrot

yktoo commented 4 years ago

Exactly, that the problem I described. MPD expects an absolute path which I cannot determine with the current version of gompd.

Let's keep this open until config is implemented there.