How to hide Title Overlay on the 5centsCDN Video Player?

To hide the Title Overlay on the 5centsCDN Video Player you can set the `hideTitleOverlay` query parameter in the video URL. By including this parameter in the player’s URL and setting it to `true` or ’1` you ensure that the Title Overlay, which typically displays the video title, is concealed from view. For example, if […]

Read More

How to mute/unmute video players on play? 

To mute or unmute video players when initiating playback, you can use ‘muted’ query parameters to control the audio settings of the player. Here’s how you can achieve this: You can set the `muted` parameter to `true` or `1` in the video URL. This will ensure that the video starts playing with the audio muted. […]

Read More

How to stop AutoPlay video in the browser?

To stop the AutoPlay of videos in a web browser, you can use the `autoplay` query parameter when embedding a video on a website or web application.  For example, you can set `autoplay` to `false` or `0` to prevent autoplay: https://your-video-player-url.com?autoplay=false Or: https://your-video-player-url.com?autoplay=0 Please note that the availability and behaviour of these parameters depend on […]

Read More

How to enable AutoPlay video in the browser?

To enable AutoPlay for a video in a web browser using query parameters, you typically set the `autoplay` parameter to `true` OR  `1`. When using query parameters to enable AutoPlay, it’s crucial to include the `muted` parameter and set it to `true` or `1` alongside the `autoplay` parameter. This ensures that the video will AutoPlay, […]

Read More

How can I change the skin of my video player by modifying the URL?

Every video player has a ‘hashId’, which is the player’s unique identifier. Users have the option to choose from default skins (Skin1, Skin2, Skin3, Skin4, Skin5) or use the hashId of any custom skin they have created. Here’s how you can modify the URL to change the player’s skin: https://iframes.5centscdn.com/video/abc123xyz

Read More

How to stop an ad using query parameters? 

To stop an ad using query parameters in a player, you can add specific parameters to your player URL to indicate which type of ad you want to stop. Here are the query parameters for stopping different types of ads: To stop a Google IMA ad, you can use the `stopImaAd` parameter with a value […]

Read More

How to set title parameters for the video player?

To set title parameters for a video player, you can use the below query parameters in the video URL. Here’s how to do it: title=MyVideoTitle/ThisIsADescriptionOfTheVideo titleUrl=https://example.com titleLogo=http://yourlogo.com Combining these parameters allows you to customize the title, description, link, and logo in a video player’s overlay. Note: ‘true’ = ‘1’ and ‘false’ = ‘0’. You can […]

Read More