Just checked aTunes. It names the file m3u but it's in fact an unformatted text file. Loading unformatted text files as playlists caused all sorts of problems in the past so I want to get rid of it.
So instead of creating a playlist like this:
Quote:
work:mp3/foo.mp3
work:mp3/bar.mp3
work:mp3/something.mp3
it should look like this:
Quote:
#EXTM3U
#EXTINF:216,Foo Artist - Foo Song
work:mp3/foo.mp3
#EXTINF:196,Bar Artist - Bar Song
work:mp3/bar.mp3
#EXTINF:245,Somebody - Something
work:mp3/something.mp3
or like this:
Quote:
[playlist]
File1=work:mp3/foo.mp3
Title1=Foo Artist - Foo Song
Length1=216
File2=work:mp3/bar.mp3
Title2=Bar Artist - Bar Song
Length2=196
File3=work:mp3/something.mp3
Title3=Somebody - Something
Length3=245
NumberOfEntries=3
Version=2
The length is always specified in seconds.
Unfortunately the current playlist loader in v3.13 gets very confused about file paths. Sometimes only absolute paths work, sometimes only relative paths work. I need to fix this.
@zzd10h I'll contact you about restoring compatibility with aTunes. One way or the other, we'll get it back to work! I promise! :)