Post Reply 
Playlist guidance/help
18-08-2021, 11:13
Post: #4
RE: Playlist guidance/help
It is a little strange that it doesn't support the / for an export as so much other software does.
If you have no joy on the forum, as long as you save the playlists with a relative path (and that matches where you're storing them on the NAS) then it's just a case of replacing the back slashes with forward slashes.

I'd find it easier to do on Linux, but a quick google and this seems to work in powershell:

Code:
$configFiles = Get-ChildItem . *.m3u
foreach ($file in $configFiles)
{
    (Get-Content $file.PSPath) |
    Foreach-Object { $_ -replace "\\", "/" } |
    Set-Content $file.PSPath
}

Out of interest, do you know if you can use generic UPnP control points to control what's playing on the HEOS speakers, or does the HEOS app itself surface the full MinimServer browse functionality?
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
Playlist guidance/help - CharlieClown - 16-08-2021, 18:11
RE: Playlist guidance/help - simoncn - 16-08-2021, 19:58
RE: Playlist guidance/help - simbun - 18-08-2021 11:13
RE: Playlist guidance/help - simoncn - 19-08-2021, 20:08

Forum Jump:


User(s) browsing this thread: 1 Guest(s)