Distributed Open RAN can deliver savings of 22% in total cost of ownership for a large Tier 1 in Western Europe (Analysys Mason, 2022). Carriers and their clients can control costs while enabling innovation and growth.
Nicola Marziliano, Wind River® VP of International Telco Sales, and other experts discuss the evolution and future of Open RAN. View the entire session above, or choose the sections you’re most interested in below.
Sample Highlights
The Future of Open RAN
Register to view the entire webinar and any of the sections.
${item?.title}
`;
tileWrapper.innerHTML= tileWrapper.innerHTML + htmlITEM;
});
}
paintPage();
jQuery(document).ready(function () {
let videoHash = null;
let currentHash = document.location.hash;
if (currentHash) {
currentHash = currentHash.replace("#", "");
videoHash = jQuery("a[data-link='" + currentHash + "']");
if (videoHash) {
//open the modal
jQuery('#videoplayer_modal').modal('show');
console.log(videoHash);
if (jQuery("#videoplaybase").length > 0) {
videojs("#videoplaybase").dispose();
}
jQuery('#videoPlayerModalWrapper').empty();
var pathVideo = jQuery(videoHash).attr('data-video');
if (pathVideo) {
var v = getVideo(pathVideo);
jQuery('#videoPlayerModalWrapper').append(v);
setTimeout(function () {
videojs('#videoplaybase');
}, 100);
}
}
}
var registed = false; //GetCookieR("video-registed");
if (registed) {
jQuery('#videoplayer_modal .form-init').hide();
jQuery('#videoplayer_modal .form-response').show();
}
/*
let myModal = document.getElementById('videoplayer_modal');
myModal.addEventListener('hidden.bs.modal', function () {
let videoplaybase = document.getElementById('videoplaybase');
if(videoplaybase.length > 0){
videojs("#videoplaybase").dispose();
}
let videoWrapper = document.getElementById('videoPlayerModalWrapper');
videoWrapper.innerHTML = "";
})
*/
jQuery('#videoplayer_modal').on('hidden.bs.modal', function (e) {
if (jQuery("#videoplaybase").length > 0) {
videojs("#videoplaybase").dispose();
}
jQuery('#videoPlayerModalWrapper').empty();
})
jQuery(".videoTrigger").click(function () {
if (jQuery("#videoplaybase").length > 0) {
videojs("#videoplaybase").dispose();
}
jQuery('#videoPlayerModalWrapper').empty();
var pathVideo = jQuery(this).attr('data-video');
var v = getVideo(pathVideo);
jQuery('#videoPlayerModalWrapper').append(v);
setTimeout(function () {
videojs('#videoplaybase');
}, 100);
});
});
var video_path_current = null;
var form_complete_status = false;
function getVideo(video_path) {
video_path = atob(video_path)
video_path_current = (video_path);
//Check if the form is completed
if (typeof Munchkin !== 'undefined' && form_complete_status == true) {
Munchkin.munchkinFunction('clickLink', {
href: '/video/?youtube=' + video_path_current
});
}
if (video_path.indexOf('JlrLAWFPWiY') >= 0) {
var iframe = document.createElement('iframe');
iframe.setAttribute("marginwidth", "0px");
iframe.setAttribute("marginheight", "0px");
iframe.setAttribute("width", "640px");
iframe.setAttribute("height", "720px");
iframe.setAttribute("frameBorder", "0");
iframe.src = "//plugin.3playmedia.com/show?mf=7212369&p3sdk_version=1.10.1&p=40622&pt=737&seo_format=external&video_id=JlrLAWFPWiY&video_target=tpm-plugin-b8aebfs9-JlrLAWFPWiY";
return iframe;
}
var video = document.createElement('video');
video.setAttribute("width", "568");
video.setAttribute("height", "284");
video.setAttribute("id", "videoplaybase");
video.setAttribute("controls", "controls");
video.setAttribute("class", "video-js vjs-default-skin");
video.setAttribute("data-setup", '{ "techOrder": ["youtube"], "sources": [{ "type": "video/youtube", "src": "' + video_path + '"}], "youtube": { "iv_load_policy": 1 } }');
return video;
}
MktoForms2.loadForm("//lp.windriver.com", "113-TSG-922", 4382, function (form) {
form.onSuccess(function (values, followUpUrl) {
jQuery('#videoplayer_modal .form-init').hide();
jQuery('#videoplayer_modal .form-response').show();
form_complete_status = true;
if (typeof Munchkin !== 'undefined') {
Munchkin.munchkinFunction('clickLink', {
href: '/video/?youtube=' + video_path_current
});
}
return false;
});
});