If you doo not want playlist visible - don't use "player with playlist" generator as it automatically orders to show playlist.
There is no option for such player to hide/show playlist only playlist button.
All those videos not playing have invalid playlists or configuration.
It's not so simple to build a playlist, you should know what XML UTf-8 is. Special chars are not allowed, eg. char "&" should be "&". There can be many other special chars like quotes, etc, that's why always best is to output xml usng php. With php it's possible to use some functions that take care about special chars.
Most simple one is:
- Code: Select all
htmlspecialchars($string, ENT_QUOTES, 'UTF-8');
where
$string is text to that you want to strip of special chars.
Thise built-in playlists delivered with player have all function included, and are working.
If you create own - suggest you to look at those ready and learn how it should be done.
Player configuration is for certain type of player - if you want to modify it even more, just take a look at certain configuration file (for playlist player this is 'cst.php'). Most of options are described and apart of admin ffrontend can be also easily changed manually. For custom needs best is to create own configuration file.