MP3 Playlist format (*.pls) ??
-
Has anybody any info how the mp3 playlist format is written, i.e. how the Length=xxx is calculated etc. Has any body maybe a Class to read/write to andfrom such a file? (win32 API/ATL/WTL if poss.) Thanks in advance
-
Has anybody any info how the mp3 playlist format is written, i.e. how the Length=xxx is calculated etc. Has any body maybe a Class to read/write to andfrom such a file? (win32 API/ATL/WTL if poss.) Thanks in advance
-
is it this thing you're looking for ? #EXTM3U #EXTINF:270, ... LENGTH=270 // it means that this song is 270 s long. Fred ;)
No, that format is for the *.m3u playlist format, If you have info for this that would be great as well
-
No, that format is for the *.m3u playlist format, If you have info for this that would be great as well
ok, so here another file, a .pls this time ;) [playlist] // head of the file File1=(U2) Pride.Mp3 // mp3 file Title1=(U2) Pride // how it will be displayed Length1=227 // 227 stands for 227seconds (3min47) ... NumberOfEntries=23 // total nb of files in the list Version=2 // ? the coding is pretty straightforward. Fred
-
ok, so here another file, a .pls this time ;) [playlist] // head of the file File1=(U2) Pride.Mp3 // mp3 file Title1=(U2) Pride // how it will be displayed Length1=227 // 227 stands for 227seconds (3min47) ... NumberOfEntries=23 // total nb of files in the list Version=2 // ? the coding is pretty straightforward. Fred
Thanks Fred, got it up and running now..