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 […]
Category: QUERY PARAMETERS
How to show/hide concurrent viewers/live viewers count on the video player?
To control the display of concurrent viewers or live viewers count in your video player, you can use ‘showcv’ query parameters to customize the player’s behaviour. Here’s a simple guide on how to show or hide this feature: Enabling Concurrent Viewers/Live Viewers Count: You can set the `showcv` parameter to `true` or `1` in the […]
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. […]
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 […]
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, […]
How can I hide or show the Picture-in-Picture (PiP) mode in a video player?
https://your-video-player-url.com?showpip=falseNote: ‘true’ = ‘1’ and ‘false’ = ‘0’. You can use either ‘true’ or ‘1’, and ‘false’ or ‘0’.
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
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 […]
How to set up an offline image for a live stream using query parameters?
To set up an offline image for a live stream using query parameters, follow these steps: By following these steps and including the appropriate query parameters in your live stream URL, you can set up an offline image to be displayed when the live stream goes offline. Adjust the values of these parameters to fit […]
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 […]