MultiMedia Soft forum

MultiMedia Soft products => Audio playback and audio management components => Topic started by: PatrickVossen on February 04, 2021, 03:17:22 PM

Title: files for Playlists
Post by: PatrickVossen on February 04, 2021, 03:17:22 PM
Hi Severino,

I am trying to create a playlist-file (wpl or pdj) for using with the ADJ component, but I noticed that, when adding a filename with an &-sign in the filename, the file is not found by the control and removed from the playlist.
When manually creating a playlist with the demo application and saving the playlist I notice that the &-sign is saved as &
Is there a list what chars needs to be converted to html entries (e.g. the space is NOT converted to  )

Best regards
Patrick Vossen
Title: Re: files for Playlists
Post by: Administrator on February 06, 2021, 08:05:16 PM
Hello Patrick,

the problem is not related to HTML but to XML, indeed both playlist formats you mentioned are based upon XML language and there are special characters that cannot be manually entered for pathnames and/or attributes values because of their special meaning:

< must be replaced with &lt;
> must be replaced with &gt;
& must be replaced with &amp;
"  must be replaced with &quot;
'  must be replaced with &apos;

Hope this helps

Kind Regards

Severino Delaurenti
MultiMedia Soft
Title: Re: files for Playlists
Post by: PatrickVossen on February 15, 2021, 09:09:33 AM
Hi Severino,

Thank for the info.

Best regards
Patrick Vossen