To control whether the player’s skin is shown upon initialization, you can use ‘showskinoninit’ query parameters to customize the player’s behaviour. Here’s a simple guide on how to show or hide the skin during player initialization:

Enabling the Skin on Player Initialization: You can modify your video player’s URL by adding ‘showskinoninit=true’ or ‘showskinoninit=1’ to the end of it. For example:

https://your-video-player-url.com/?showskinoninit=true

Disabling the Skin on Player Initialization: To hide the skin upon initialization, you can modify your video player’s URL by adding ‘showskinoninit=false’ or ‘showskinoninit=0’ to the end of it. For example:

https://your-video-player-url.com?showskinoninit=false

Note: ‘true’ = ‘1’ and ‘false’ = ‘0’. You can use either ‘true’ or ‘1’, and ‘false’ or ‘0’.