Tag: yellows

Information:
Video Source:
Fast mode uses a CDN for quicker, highly compatible playback
  • Towering clouds at dawn with virga

    Scene notes:

    The sunrise is making gold and pink saturation of overhead passing clouds.
    Time-lapse length (30 fps):
    11 seconds and 24 frames.

  • Flying over unique sand dunes and shrublands…

    View with alternate video source

    Scene notes:

    Over sand dunes with shrublands on the right. The shadows of the nearby fog, passing on the ocean breeze, float by quickly as it unexpectedly comes in on return. The dunes don’t show a low amount of human impact- but a definite impact, nonetheless. The sky consists of the top seventh of the frame and is a mix of stratus layers under blue sky. The frame pans downward digitally from the sky.
    Time-lapse length (30 fps):
    7 seconds and 15 frames.

  • Flying rapidly over Iceland above Snæfellsjökull

    Scene notes:

    Snæfellsjökull National Park, slow life and the ocean briefly in the distance Slow life is plant life that takes a very long time to grow, just one person trampling these plants can damage the ecosystem for decades.
    Time-lapse length (30 fps): 56 seconds and 13 frames.

  • Pink clouds Hawaii coastline and jungle mountains…

    View with alternate video source

    Scene notes:

    …with the yellow sand beach in the foreground. Looking north there is a small Cumulonimbus cloud over the Napali coast. In this short timespan time-lapse there is the light of the sun fading as it goes below the horizon and clouds far away from this beach. The warm day provides plenty of lift and vapor for these clouds, which keep their shapes well as they run into this lifting of air right above the coastline.

  • Under glow after the sun has set, the medium level…

    View with alternate video source

    Scene notes:

    …clouds are illuminated from beyond the horizon, and below. Altocumulus Castellanus are mid-level clouds and have very intricate details, which are highlighted during sunset. A three second interval was used to show the progress of the colors shifting in the all-sky scene which is particularly majestic; these moderately dense clouds are named after the castle tops that sprout from streaking plumes.
    Time-lapse length (30 fps):
    10 seconds and 13 frames.

  • Mid-level clouds glow briefly, flowing at dawn with the rain

    View with alternate video source

    Scene notes:

    A dawn rain cloud backlit with brilliant colors as a few of the mid-level clouds show unusual curves due to precipitation, which is responsible for the glow. Just the right amount of rainfall, a very light amount, is enough to bring out the brilliant golds, however briefly, ending on much bluer colors due to the sun ‘going behind’ clouds which moved between it and the point of view.
    Time-lapse length (30 fps):
    8 seconds and 8 frames.

  • Glowing congestus clouds rambling at sunset, tall…

    View with alternate video source

    Scene notes:

    The denser the cloud, the less light the outside areas will allow the light to penetrate through, and this fact is displayed on these towering clouds at sunset. The slower speed is gentler to watch for those who may become motion sickness by watching playback closely. This is an issue for media buyers who have a different experience (after scrutinizing the clip on repeat) than those end-viewers who will only see the clip once. Time-lapse length (at 30 fps):52 seconds and 24 frames.

const dot = document.querySelector('.dot'); const messageBox = document.getElementById('message-box'); const messageText = document.getElementById('message-text'); const toggleLabel = document.querySelector('.toggle-label-text'); // --- Functions --- const showMessage = (message) => { messageText.textContent = message; messageBox.classList.add('visible'); setTimeout(() => { messageBox.classList.remove('visible'); }, 3000); }; const updateAllPlayers = (isAutoplayEnabled) => { const videoPlayers = document.querySelectorAll('.cloudflare-stream-embed, .mxx'); videoPlayers.forEach(player => { // Check if the element is an iframe if (player.tagName.toLowerCase() === 'iframe') { if (!player.dataset.originalSrc && player.src) { player.dataset.originalSrc = player.src; } const originalSrc = player.dataset.originalSrc; if (originalSrc) { try { const currentSrc = new URL(originalSrc); if (isAutoplayEnabled) { currentSrc.searchParams.set('autoplay', 'true'); currentSrc.searchParams.set('muted', 'true'); } else { currentSrc.searchParams.delete('autoplay'); currentSrc.searchParams.delete('muted'); } if (player.src !== currentSrc.toString()) { player.src = currentSrc.toString(); } } catch (error) { console.error('Could not process iframe source URL:', originalSrc, error); } } // Check if the element is a video tag } else if (player.tagName.toLowerCase() === 'video') { if (isAutoplayEnabled) { player.autoplay = true; player.muted = true; player.loop = true; player.playsInline = true; player.play().catch(error => { // Autoplay with sound is often blocked by browsers. console.log('Video play was prevented. This is common behavior.', error); }); } else { player.autoplay = false; player.pause(); } } }); }; const updateToggleLabel = (isEnabled) => { if (isEnabled) { toggleLabel.textContent = 'Allowing the below videos to automatically play sitewide'; } else { toggleLabel.textContent = 'Preventing the below videos from automatically playing sitewide'; } }; // --- Initialization --- const savedPreference = localStorage.getItem('autoplayEnabled') !== 'false'; autoplayToggle.checked = savedPreference; if (savedPreference) { dot.classList.add('toggled'); } updateAllPlayers(savedPreference); updateToggleLabel(savedPreference); // --- Event Listeners --- autoplayToggle.addEventListener('change', function() { const isChecked = this.checked; localStorage.setItem('autoplayEnabled', isChecked); updateAllPlayers(isChecked); updateToggleLabel(isChecked); if (isChecked) { showMessage('Autoplay enabled for these videos.'); dot.classList.add('toggled'); } else { showMessage('Autoplay disabled for these videos.'); dot.classList.remove('toggled'); } }); });