Hello,
I have my local music MP3 files stored locally in /media
and can assess & play them just great using the media browser.
However I am struggling with M3U playlists, in that I cannot find the correct resource URL to get it to work.
My folder structure is:
media/
playlist.m3u
album/
track.mp3
in playlist.m3u
I have tried the following:
#EXTINF:123,track name
media-source://media_source/local/album/track.mp3
#EXTINF:123,track name
/local/album/track.mp3
#EXTINF:123,track name
album/track.mp3
with no success. Selecting the playlist.m3u
just results in the word error
showing in the media player.
What I have got to work is copying all the music to www/album
and using
#EXTINF:123,track name
https://<<hassip:port>>/local/album/track.mp3
but this seems wrong, as I have to copy the music there.
(I did try a symbolic link, but it turn out HA does not support them in www
for security reasons).
How should I reference the music, in the /media
folder in a M3U playlist?