@
jbaumann
This is just a footnote to Al's reply. It's correct but you said you're trying to convert some playlists so you may need some more info.
The moOde playlists are stored as M3U files in
/var/lib/mpd/playlists
As Al said, the track references will be with respect to the CUE file, not the actual FLAC file. The CUE file path will not be absolute but relative to the mount point of moOde's music directory.
Example, I've just stuck a USB drive into a moOde player. The drive is named KAR02. It's mounted at
/mnt/KAR02; through the magic of symbolic links, it shows up in the music directory as
USB/KAR02.
The "Cue" directory on this drive contains a FLAC / CUE file pair for my rip of Pink Floyd's "Dark Side of the Moon". Here's what we see when this album is loaded into the Queue and I use moOde "Save Queue to playlist" naming the playlist "PF-Cue" and editing it to have Genre "Rock".
Code:
pi@m833p4b:/var/lib/mpd/playlists $ cat PF-Cue.m3u
#EXTGENRE:Rock
#EXTIMG:local
USB/KAR02/Cue/Pink Floyd-Dark Side of the Moon/Dark Side of the Moon.cue/track0001
USB/KAR02/Cue/Pink Floyd-Dark Side of the Moon/Dark Side of the Moon.cue/track0002
...
The associated CUE file is in the same directory as the FLAC file and begins
Code:
pi@m833p4b:/media/KAR02/Cue/Pink Floyd-Dark Side of the Moon $ cat *cue
PERFORMER "Pink Floyd"
TITLE "Dark Side of the Moon"
FILE "Dark Side of the Moon.flac" WAVE
TRACK 01 AUDIO
INDEX 00 00:00:00
TITLE "Speak to Me / Breathe in the Air"
INDEX 01 00:00:33
TRACK 02 AUDIO
TITLE "On the Run"
INDEX 01 03:58:18
...
Note- I gave this playlist a cover image but that's not referenced in the M3U file; it's dealt with separately.
Between moOde and underlying MPD, the imagery and metadata all show up nicely in the Playback panel
with when I load this playlist and start selecting/playing tracks.
Regards,
Kent