Germane Media, established in mid-2022 as a digital advert monetization agency, has led the best way in programmatic applied sciences supporting digital publishers in 15 nations throughout 5 continents. Centered on video monetization for internet, in-app, and Linked TV (CTV), Germane Media has turn out to be a dependable accomplice for advertisers and companies searching for curated offers tailor-made to particular advert environments, codecs, genres, or occasions. Using first-party information segments and a clear provide chain, Germane Media allows companies to effectively goal potential publications, addressing the business’s essential wants. Earlier this 12 months, Germane Media achieved the standing of Google Licensed Publishing Associate, changing into the quickest firm within the APAC area to take action inside simply 15 months of its inception. Germane Media collaborates with prime consumers like Amazon, Pubmatic, Freewheel, Microsoft, and Magnite, making certain entry to high-quality provide throughout varied environments.

Germane Media seized the CTV momentum within the Western market early final 12 months, establishing itself as a number one APAC supplier of promoting options for this phase. Partnering with lots of of CTV publishers and FAST platforms, Germane Media acknowledged a major alternative within the rising streaming format for the APAC market. After six months of detailed planning and execution, Germane Media proudly proclaims the launch of Swift TV, a brand new streaming platform designed for the Indian viewers.

Launching first on cellular app shops, Swift TV plans to broaden to TV OS platforms inside a number of months. The service will debut in India by the tip of this 12 months, with future growth into areas such because the US, UK, Canada, and Dubai, focusing on the Indian diaspora. The platform goals to draw 1 million customers by the tip of the 12 months and 3-5 million inside its first 12 months, encompassing each in-app and CTV stock.

“Our experience in advert monetization might be essential in making Swift TV profitable. Our current SSP, DSP, and company connections might be invaluable in reaching optimum promoting yield on our owned and operated platform. Not like different platforms that depend on third events for monetization, our distinctive method ensures higher yields for our content material companions. Dwell streaming seminars, webinars, and particular occasion screenings might be a part of Swift TV’s choices within the coming months,” mentioned Abhishek Singh, CEO.

Swift TV is ready to remodel the streaming panorama as an unbiased Free Advert-Supported Tv (FAST) platform, providing viewers a singular and fascinating expertise with numerous, curated, theme-based content material—all without spending a dime. In a market dominated by subscription-based Over-The-High (OTT) companies, Swift TV stands out by championing the rising FAST tradition in India. Devoted to offering high-quality leisure throughout varied genres, Swift TV ensures premium content material is accessible to everybody. Customized suggestions pushed by superior algorithms and consumer information improve the viewing expertise, making Swift TV a platform that resonates with particular person tastes and preferences.

“Swift TV is not only one other streaming service; it is a motion in the direction of democratizing digital leisure, making it inclusive and fulfilling for a broader viewers. Be part of the Swift TV revolution and expertise the very best of curated Indian leisure without spending a dime,” mentioned Sai Srikanth, CTO.

With Swift TV, Germane Media is ready to redefine the digital leisure panorama in India, providing an revolutionary platform that mixes the very best of ad-supported streaming with personalised, high-quality content material.

Final Up to date Jun 29, 2024, 5:18 PM IST

Obtain App:

function handleOpenLogin(){ var loginData = JSON.parse(localStorage.getItem("asianetLogin")); if(loginData){ let nameupdate = document.getElementById("loggedInName"); nameupdate.innerHTML = loginData.name; let emailupdate = document.getElementById("loggedInEmail"); emailupdate.innerHTML = loginData.email; let profilepicupdate = document.getElementById("loggedInImagesrc"); profilepicupdate.src = loginData.profileImg;

document.getElementById('loggedOutState').style.display = "none"; document.getElementById('loggedInState').style.display = ""; document.getElementById('loggedOutImageDiv').style.display = "none"; document.getElementById('loggedInImageDiv').style.display = ""; }else{ document.getElementById('loggedInState').style.display = "none"; document.getElementById('loggedOutState').style.display = ""; document.getElementById('loggedInImageDiv').style.display = "none"; document.getElementById('loggedOutImageDiv').style.display = ""; } const loginPopup = document.querySelector('.loginpopup'); loginPopup.classList.add('open'); document.body.style.overflow = 'hidden'; newsHubContainer.style.zIndex = '999'; }

function getDetails(clientId, token, loginType){ const apiUrl = loginType == "google" ? 'https://5pusunhjjf.execute-api.ap-south-1.amazonaws.com/v1/frontendUser/googleLogin' : 'https://5pusunhjjf.execute-api.ap-south-1.amazonaws.com/v1/frontendUser/fbLogin'; fetch(apiUrl, { method: 'POST', headers: { Accept: 'application/json', 'Content-Type': 'application/json', }, body: JSON.stringify({"clientId": clientId, "credential": token,"accessToken":token, "accountId": "site/lg5okt1pl", loginType: loginType }), }) .then((res) => { if(res.status==200) { return res.json(); } }).then(resData => { localStorage.setItem("asianetLogin", JSON.stringify({name: resData.fullName, email: resData.email, profileImg: resData.imageUrl})); $('.loginpopup').removeClass('open'); console.log("response", resData); $('.btnlogin').find('img').attr('src', resData.imageUrl); $('.btnlogin').find('img').css({"border-radius": "50%"}); }) .catch((err) => { console.error(err); return {}; }); } document.addEventListener('DOMContentLoaded', function () { let userData = JSON.parse(localStorage.getItem("asianetLogin")); if (userData) { $('.btnlogin').find('img').attr('src', userData.profileImg); $('.btnlogin').find('img').css({"border-radius": "50%"}); } });

function handleCredentialResponse(response) { let clientId = '154180282365-0fnmmnnc5api7rmetko7v1ujd104m7n9.apps.googleusercontent.com'; var res = getDetails(clientId,response.credential, "google"); console.log("google_response",response,res); }

function handleLogout(){ if(typeof window != undefined){ let storageData = JSON.parse(localStorage.getItem("asinetLogin")); localStorage.removeItem("asianetLogin"); $('.btnlogin').find('img').attr('src', 'https://static.asianetnews.com/v1/user-icon.svg'); $('.btnlogin').find('img').css({"border-radius": "50%"}); $('.loginpopup').removeClass('open'); $('body,html').css('overflow',''); } }

function handleFbLogin(){ FB.login(function(response){ if (response.authResponse) { getDetails('962655038083531', response.authResponse.accessToken, "fb"); } }, {scope: 'public_profile,email'}); }

window.fbAsyncInit = function() { // FB JavaScript SDK configuration and setup FB.init({ appId : '962655038083531', // FB App ID cookie : true, // enable cookies to allow the server to access the session xfbml : true, // parse social plugins on this page version : 'v3.2' // use graph api version 2.8 }); };

// Load the JavaScript SDK asynchronously (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "https://connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); document.addEventListener('DOMContentLoaded', function () { const btnLogin = document.querySelector('.btnlogin'); const loginPopup = document.querySelector('.loginpopup'); const loginPopupOverlay = document.querySelector('.loginpopupoverlay'); const newsHubContainer = document.getElementById('iz-news-hub-main-container');

btnLogin.addEventListener('click', function () { loginPopup.classList.add('open'); document.body.style.overflow = 'hidden';

gtag('event', 'login_click', { page_title: "Introducing Swift TV: Revolutionizing Free Ad-Supported Streaming in India", page_location: window.location.href, content_type: 'article', content_category:'PR Spot', author: 'Sanjana Santhosh', content_id:'sfubg0', author_id: 'india', published_date : '2024-06-29', seo_name : '' });

if(newsHubContainer){newsHubContainer.style.zIndex = '999';} });

function closeLoginPopup() { loginPopup.classList.remove('open'); document.body.style.overflow = ''; if(newsHubContainer){newsHubContainer.style.zIndex = '';} }

const closeBtns = document.querySelectorAll('.closeloginpopup, .loginpopupoverlay'); closeBtns.forEach(function (btn) { btn.addEventListener('click', closeLoginPopup); }); });



Source link

Share.

Leave A Reply

Exit mobile version