To set up an offline image for a live stream using query parameters, follow these steps:

  1. Offline Image URL: First, you need to specify the URL of the offline image you want to display when the live stream goes offline. You can set this with the `offlineImage` parameter in the query string. For example:

    offlineImage=https://example.com/path-to-your-image.jpg
  2. Offline Countdown: You can choose whether to display a countdown timer when the stream goes offline. Use the `offlineCountdown` parameter with either true or false to control this feature. For example:

    offlineCountdown=true
  3. Offline Timeout:  A timer initiates when the stream transitions to an offline state. This is done using the `offlineTimeout` parameter, which should be specified in the format HH:MM:SS. For example, to set it to 2 minutes:

    offlineTimeout=00:02:00
  4. Offline Label: You can also add a label to the offline image to provide additional information or branding. Use the `offlineLabel` parameter to set this label. For example:

    offlineLabel=YourLabelHere
  5. Now, let’s put it all together in a sample URL:

    https://your-live-stream-player-url.com/player-config?showcv=true?offlineImage=https://your-image-url.com/offline-image.jpg&offlineTimeout=00:02:00&offlineCountdown=true&offlineLabel=YourLabel 


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 your specific requirements.

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