Edge computing is forcing software consolidation close to data sources. More than 85% of global organizations will be running containerized applications by 2025, according to Gartner.
Wind River® Principal Technologist Rob Woolley discusses real-time options and how to choose the one most applicable to your use case. View the entire session above, or select the sections you’re most interested in below.
Sample Highlights
Real-Time Containers for Intelligent Systems
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", 4175, 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;
});
});