On files with certain metadata, creating a playlist (using File
-> Playlist (all files)
) causes LF line breaks to be inserted into the .m3u8 playlist. This occurs when the Write extended info
setting is enabled in the Playlist section of the Options menu.
The EXTINF
duration and metadata should be on a single line with the filename following on the next line. Trying to open one of these created playlist files in foobar2000 causes the player to see these additional lines as additional files that don't exist.
Using just 01 track 1.flac
as an example. Note that the erroneous line breaks use only line feed characters while the intended line breaks use both carriage return and line feed characters.
.m3u8 file created by Mp3tag:
#EXTM3U
[CR][LF]
#EXTINF:288,Azumi Waki - ใใฉใใฏ 1
[LF]
ไป็ใใใซ
[LF]
่ตทใใใฆใใใฃใฆ
[LF]
ใใฃใใใซใใฏใ๏ผ
[CR][LF]
01 track 1.flac
[CR][LF]
.m3u8 file created by foobar2000:
#EXTM3U
[CR][LF]
#EXTINF:288,Azumi Waki - ใใฉใใฏ 1 ไป็ใใใซ ่ตทใใใฆใใใฃใฆ ใใฃใใใซใใฏใ๏ผ
[CR][LF]
01 track 1.flac
[CR][LF]
Please fix this bug and ensure that generated playlists do not include erroneous line breaks.