G-Mana SSAI is a simplified end to end server side OTT ad insertion workflow. G-Mana allows content broadcasters and publishers to insert ads into VOD and Live OTT channels easily. Using G-Mana server-side solution, you can be sure that your viewers will see ads without having to worry about ad-blockers.
This page will guide you on how to use G-Mana SSAI with Radiant Media Player to leverage the best of both technologies.
We have tested G-Mana SSAI solution with Radiant Media Player to guarentee a top-nocth viewing experience to your audience.
G-Mana is a Radiant Media Player technology alliance partner.
It ain't rocket science they say ... and they are telling the truth. Get ready for the
SSAI
jump and deliver monetized live or on-demand HLS content while making sure no ad-blocker
is
going to ruin the day. Thanks to Radiant Media Player robust support for
EXT-X-DISCONTINUITY
with
HLS, adding a G-Mana SSAI HLS stream to our player is straight forward.
Player code example for a live HLS stream:
<script src="https://cdn.radiantmediatechs.com/rmp/10.1.1/js/rmp.min.js"></script>
<div id="rmp"></div>
<script>
// Your G-Mana SSAI live HLS streaming URL
const src = {
hls: 'https://your-live-hls-ssai-url.m3u8'
};
const settings = {
licenseKey: 'your-license-key',
src,
width: 640,
height: 360,
contentMetadata: {
poster: [
'https://your-poster-url.jpg'
]
}
};
const rmp = new RadiantMP('rmp');
async function initRmpPlayer() {
try {
await rmp.init(settings);
} catch (error) {
console.error('Radiant Media Player failed to initialize', error);
}
}
initRmpPlayer();
</script>
©2015-2025 Radiant Media Player. All Rights Reserved.