Barton Interview B-roll (2024)

").appendTo(controls); mbOptions = $("#multiBandwidthOptions"); createMultiBandwithAnchors(currentVideoHeight); multiBandwidth.hover(function () { mbOptions.show(); }, function () { mbOptions.hide(); }); }; // BUILD MULTI-BANDWIDTH PLAYER TOOL function createMultiBandwithAnchors(videoHeight) { videoHeight = checkVideoHeight(videoHeight); updateMultiBandwithAnchors(videoFilesObj, videoHeight); } // CHECK IF CURRENT VIDEO HEIGHT EXISTS function checkVideoHeight(heightToCheck) { var index = videoFilesObj.length - 1; tempHeight = videoFilesObj[index].height; for (var i = 0; i < videoFilesObj.length; i++) { if (videoFilesObj[i].height == heightToCheck) { tempHeight = videoFilesObj[i].height; break; } } return tempHeight; } // SET PLAYER SOURCE AND PLAY VIDEO function setPlayerSource(src) { videoHasPlayed = false; // INIT createMultiBandwithAnchors(currentVideoHeight); // RECREATE THE ANCHORS var time = myPlayer.getCurrentTime(); // GET THE CURRENT TIME myPlayer.setSrc(src); myPlayer.load(); playVideo(); // SET THE TIMER TO THE CURRENT TIME SO IT WILL BE AVAILABLE WHEN THE PLAYER IS RELOADED if (time > 0) { restartTimer = time; } } // The container element is relatively positioned. MediaElement js creates an absolutely // positioned element within. Absolutely positioned items do not respect the containment // of parent relatively positioned elements. This ensures the heights are constrained. function calculateVideoHeight() { if (debug) console.log('DVIDSPlayer() > calculateVideoHeight()'); var playerHeight = $('.DVIDSVideoPlayerItem video').height(); if (debug) console.log('DVIDSPlayer() > calculateVideoHeight', playerHeight); if (playerHeight) { $('.DVIDSVideoPlayer .video-column, .DVIDSVideoPlayerItem, .DVIDSVideoPlayerItemPlaceHolder').css("min-height", playerHeight + 20); $('.DVIDSVideoPlayerItem .mejs__video, .DVIDSVideoPlayerItem video').css('height', playerHeight); } } function debounce(func, wait, immediate) { var timeout; return function () { var context = this, args = arguments; var later = function () { timeout = null; if (!immediate) func.apply(context, args); }; var callNow = immediate && !timeout; clearTimeout(timeout); timeout = setTimeout(later, wait); if (callNow) func.apply(context, args); }; }; function setAspectRatio() { if (debug) console.log('DVIDSPlayer() > setAspectRatio()'); // for portrait aspect ratio, need to wait till video is playing, then redetect height var loopCount = 0; var mainLoopId = setInterval(function () { loopCount++; calculateVideoHeight(); if (loopCount > 10) { clearInterval(mainLoopId); } if (debug) console.log('DVIDSPlayer() > setAspectRatio() > setInterval Running'); }, 500); } function playVideo() { document.getElementById('videoPlayer14805').play(); setAspectRatio(); //var playButton = $(".mejs-overlay-play"); //if (playButton.size() != 0) { // playButton.trigger("click"); //} } myPlayer = new MediaElementPlayer('videoPlayer14805', { videoWidth: '100%', videoHeight: '100%', //enableAutosize: true, pluginPath: "/DesktopModules/SharedLibrary/Plugins/MediaElement4.2.9/", hls: { debug: false, capLevelToPlayerSize: true, capLevelOnFPSDrop: true, startLevel: -1, abrMaxWithRealBitrate: true }, features: ["playpause", "progress", "current", "duration", "tracks", "volume", "fullscreen"], success: function (mediaElement, domObject) { $(".DVPPlayerBackground .mejs__poster-img").attr("alt", "Interview B-roll of 134th CES \u0026quot;Dirt boy\u0026quot; Cory Barton, describing the role and duties of a \u0026quot;dirt boy\u0026quot; in civil engineering."); mediaElement.addEventListener('playing', function (e) { if (defaultButton.length) { if (playEventButtonTriggered === false) { defaultButton.hide(); hoverButton.hide(); playEventButtonTriggered = true; } } if (playEventAlreadyTriggered === false) { DVIDSVideoAnalytics.track('play', analyticsParams); if(debug) { console.debug('DVIDSVideoAnalytics PLAY EVENT'); } playEventAlreadyTriggered = true; } }); mediaElement.addEventListener('play', function (e) { if ($(".mejs__controls").is(":hidden") ) $(".mejs__controls").show(); // if overlay exists, hide it if ($(".mejs__layer.video-overlay").length) $(".mejs__layer.video-overlay").hide(); setAspectRatio(); }); mediaElement.addEventListener('ended', function (e) { DVIDSVideoAnalytics.track('ended', analyticsParams); if(debug) { console.debug('DVIDSVideoAnalytics ENDED EVENT'); } //play next media var nextURL = "javascript:GetCCURL('https://www.134arw.ang.af.mil/News/?videoid=928141&dvpTag=134th#DVIDSVideoPlayer14805')"; if (nextURL != "") { document.location = nextURL; } }); //$('#videoPlayer14805').css({'width': '100%', 'height':'100%'}); // EVENT LISTENER FOR WHEN VIDEO TIME HAS BEEN UPDATED mediaElement.addEventListener('timeupdate', function (e) { // IF VIDEO HAS NOT BEEN PLAYED AND SAVED POSITION IS GREATER THAN 0 if (!videoHasPlayed && restartTimer > 0) { // SET THE START TIME FROM THE RELATION IN SECONDS myPlayer.setCurrentTime(restartTimer); // SET THE VIDEO HAS PLAYED FLAG AND CLEAR THE TIMER // OTHERWISE KEEP CONTINUAL LOOP GOING BACK TO THIS TIME // THIS EVENT GETS CALLED AROUND EVERY 250MS videoHasPlayed = true; restartTimer = 0; } }, false); mediaElement.addEventListener('canplay', function (e) { CheckCaptions(); }, false); mediaElement.addEventListener('pause', function (e) { if (defaultButton.length) { defaultButton.removeAttr("style"); hoverButton.removeAttr("style"); playEventButtonTriggered = false; } }, false); mbOptions.delegate("a", "click", function () { var obj = $(this); if (obj.hasClass("chosenMBLink")) { return false; } else { mbOptions.find("a.chosenMBLink").removeClass("chosenMBLink"); obj.addClass("chosenMBLink"); currentVideoHeight = obj.html().substring(0, obj.html().length - 1); setPlayerSource(obj.attr("fileurl")); } mbOptions.hide(); return false; }); // ASSIGN CAPTIONS SELECTOR TO JQUERY OBJECT, SET CLICK DELEGATE AND TURN ON CAPTIONS IF PREVIOUSLY ENABLED captionsSelector = $("div.mejs-captions-selector"); captionsSelector.delegate("input:radio", "click", function () { var lang = this.value; if (lang == "none") { dvpCCEnabled = false; } else { dvpCCEnabled = true; } }); turnOnCaptionsIfEnabled(); } }); $window.on("resize", function () { if ($(".mejs__time-total.mejs__time-slider").attr("aria-valuemax") == "NaN") { $(".mejs__time-total.mejs__time-slider").attr("aria-valuemax",151); } var debouncedFn = debounce(calculateVideoHeight, 250); debouncedFn(); }); // AUTOMATICALLY PLAY VIDEO IF ID PASSED OR VIDEO CLICKED if (true) { playVideo(); //document.getElementById('videoPlayer14805').play(); } }); function updateMultiBandwithAnchors(files, videoHeight) { var mbOptions = $("#multiBandwidthOptions"); var multiBandwidthHTML = []; for (var i = 0; i < files.length; i++) { if (i == files.length - 1) { multiBandwidthHTML.unshift("" + files[i].height + "p"); } else { if (files[i].height != files[i+1].height) { multiBandwidthHTML.unshift("" + files[i].height + "p"); } } } multiBandwidthHTML.push("

"); mbOptions.html(multiBandwidthHTML.join("")); var mbAnchors = mbOptions.children("a"); for (i = 0; i < mbAnchors.length; i++) { if (mbAnchors.eq(i).html() == videoHeight + "p") { mbAnchors.eq(i).addClass("chosenMBLink"); } } mbOptions.css("height", 20 * mbAnchors.length); } function PlayAssetAJAX(id) { var baseUrl = $.ServicesFramework().getServiceRoot('DVIDSVideoPlayer'); $.ajax({ type: "GET", url: baseUrl + "Public/GetAsset?id=" + id, headers: { "ModuleId": 14805, "TabId": 1826, "RequestVerificationToken": $("input[name='__requestverificationtoken']").val() }, success: function (data) { // remove the poster so the initial poster doesn't display while switching videos. $(".DVPPlayerBackground .mejs__poster").css("background-image", ""); $(".DVPPlayerBackground .mejs__poster-img").removeAttr("src"); $(".DVPPlayerBackground video").removeAttr("poster"); // analytics playEventAlreadyTriggered = false; gaUrl = data.AnalyticsUrl; gaTitle = data.AnalyticsTitle; gaID = data.ID; // play through mediaelementjs $("#MediaCaption" + id).attr('src', data.CaptionsUrl); myPlayer.rebuildtracks(); myPlayer.setSrc(data.Video.HlsSrc); myPlayer.play(); updateMultiBandwithAnchors(data.Bandwidth, 700); }, error: function () { if(debug) { console.log("error loading asset"); } } }); }

Barton Interview B-roll

134th Air Refueling Wing

Video by Staff Sgt. Darby Arnold

May 19, 2018 | 2:31

Interview B-roll of 134th CES "Dirt boy" Cory Barton, describing the role and duties of a "dirt boy" in civil engineering. More

Now Playing Barton Interview B-roll
3:00 Falcon Responder 24 - B-Roll
2:52 134th Security Forces Squadron trains with Firefighters during Active Threat Response
1:10 134th ARW conducts Fire and Emergency Services exercise
2:09 134th Force Support Squadron train with E-SPEK
2:43 The Volunteer Manifesto
3:46 134th ARW Airmen bring smiles to East Tennessee Children's Hosptial
1:41 Knoxville Airmen deliver smiles to East Tennessee Children's Hospital
2:43 The Volunteer Manifesto
1:03 134th Civil Engineers train in Hawaii
1:01 134th Fire Fighters train for CBRN defense
1:40 134th ARW showcases operational agility during Thracian Sentry 2023
0:53 134th ARW Firefighters improve readiness with Bulgarian Air Force.
1:54 134th ARW refuels Hellenic Air Force F-16s during Thracian Sentry 23
0:33 100 Years of Aerial Refueling - teaser

See More

', mobileFirst: true, initialSlide:selectedIndex, responsive: [ { breakpoint: 1600, settings: { slidesToShow: 5, slidesToScroll: 5, swipe: true } }, { breakpoint: 1200, settings: { slidesToShow: 4, slidesToScroll: 4, swipe: true } }, { breakpoint: 1024, settings: { slidesToShow: 3, slidesToScroll: 3, swipe: true } }, { breakpoint: 992, settings: { slidesToShow: 3, slidesToScroll: 3, swipe: true } }, { breakpoint: 768, settings: { slidesToShow: 2, slidesToScroll: 2, swipe: true } }, { breakpoint: 480, settings: { slidesToShow: 1, slidesToScroll: 1, swipe: true } } ] }); } else { $carouselSeeMore.show(); $carousel.addClass('DVIDSCarouselWithSeeMore'); initDVIDSCarouselSeeMore(); } if (shortDesc < fullDesc) { DVIDSDesc.html(shortDesc); descMore.on("click", function () { DVIDSDesc.html(fullDesc); descMore.hide(); }); } else { descMore.hide(); } var tagElements = jQuery(".DVIDSMediaTags").children().not('.DVIDSMediaTagsMore').toArray(); var tagMore = jQuery(".DVIDSMediaTagsMore"); if (tagElements.length > 8) { for (var i = 0; i < tagElements.length; i++) { if (i > 7) { jQuery(tagElements[i]).hide(); } } } else { tagMore.hide(); } tagMore.on("click", function () { for (var i = 0; i < tagElements.length; i++) { jQuery(tagElements[i]).show(); } jQuery(tagMore).hide(); }); WindowResize(); function WindowResize() { embedBox.hide(); shareBox.hide(); mobileShareBox.hide(); } function initDVIDSCarouselSeeMore() { $carouselSeeMore.click(function () { $DVIDSCarouselItems.filter(':hidden:lt(3)').each(function () { $(this).fadeIn(); if (!$DVIDSCarouselItems.filter(':hidden').length) { $carouselSeeMore.hide(); } }); }); } // SHARE INFO HANDLERS $('#playerShare-14805').click(function () { embedBox.hide(); shareBox.toggle(); return false; }); $("#closeShareBox-14805").click(function () { shareBox.hide(); }); // EMBED INFO HANDLERS $('#playerEmbed-14805').click(function () { shareBox.hide(); embedBox.toggle(); return false; }); $("#closeEmbedBox-14805").click(function () { embedBox.hide(); }); if (window['a2a'] !== undefined) { const adtbx = $("playerShareInfo-14805 .a2a_kit"); $(adtbx).attr('data-a2a-url', location.protocol + "//" + location.host + location.pathname + "?videoid=" + "607512"); $(adtbx).attr('data-a2a-title', "Barton Interview B-roll"); $(adtbx).attr('data-a2a-description', "Interview B-roll of 134th CES \u0026quot;Dirt boy\u0026quot; Cory Barton, describing the role and duties of a \u0026quot;dirt boy\u0026quot; in civil engineering."); } });

Barton Interview B-roll (2024)

References

Top Articles
Latest Posts
Article information

Author: Duane Harber

Last Updated:

Views: 5745

Rating: 4 / 5 (51 voted)

Reviews: 82% of readers found this page helpful

Author information

Name: Duane Harber

Birthday: 1999-10-17

Address: Apt. 404 9899 Magnolia Roads, Port Royceville, ID 78186

Phone: +186911129794335

Job: Human Hospitality Planner

Hobby: Listening to music, Orienteering, Knapping, Dance, Mountain biking, Fishing, Pottery

Introduction: My name is Duane Harber, I am a modern, clever, handsome, fair, agreeable, inexpensive, beautiful person who loves writing and wants to share my knowledge and understanding with you.