Tag: wind on water

Information:
Video Source:
Fast mode uses a CDN for quicker, highly compatible playback
  • Panning over Crater Lake looking to island…

    View with alternate video source

    Scene notes:

    … with wind on the water under light clouds. Physically panning on the lake, from the scree slide of the southwest next to Wizard Hat Island. The gentler wind creates small ripples on the lake in the afternoon, low clouds in the sky. Similar to another clip.
    Time-lapse length (30 fps):
    5 seconds and 19 frames.

  • Crater Lake motion controlled viewpoint at sunrise

    Scene notes:

    Wind on the water over Crater Lake in the early morning among the cliff trees. SKU/clip number: DSK170
    Time-lapse length (30 fps):
    22 seconds.

  • 1 of 2 On vast lake when medium heavy clouds pass…

    View with alternate video source

    Scene notes:

    On vast lake when medium heavy clouds pass quicky on the wind and water. Heavy clouds over Crater Lake.
    Time-lapse length (30 fps):
    20 seconds and 8 frames.

  • Shadows rising on San Francisco, Golden Gate Bridge…

    View with alternate video source

    Scene notes:

    …overbright areas fade as the sun sets away from the point-of-view. Looking east in the late afternoon, you can observe ‘the City’ from afar, behind the long red bridge. Wind on water currents make ripples, as is the traffic on the 101 Highway that spans the bridge. Shadows become longer as the sun sets first on the foreground grassy slopes, and then the ocean bay.
    Time-lapse length (30 fps):
    13 seconds and 20 frames.

  • Flowing clouds and shadows over high desert and a lake

    View with alternate video source

    Scene notes:

    On a lake in the Sierra Nevadas, heavier cumulus clouds flow overhead. Rocky and rugged terrain lead the way before it. The shadows of the clouds flow smoothly over distant autumn trees
    Time-lapse length (30 fps):
    8 seconds.

  • 3 of 3 | Shifting, dark snowy rain clouds on vast lake

    View with alternate video source

    Scene notes:

    Wind on water is visible throughout this frame. Strong gusts push the water chaotically on the surface of the vast, deep volcanic caldera. So much freshwater fills this vast crater that it is one of the deepest lakes in the world, the lake spans well outside the viewing angle of this POV. After days of solitude and nothing but clouds, light shafts eventually peak through the cloud and snowfall to brightly illuminate sections of water next to Wizard Hat Island.
    Time-lapse length (30 fps):
    17 seconds and 5 frames.

  • On a view of vast lake w/ clouds moving and shade on windy water

    View with alternate video source

    Scene notes:

    A largely winter landscape on volcanic crater overlooks the moving clouds and bright spots of the lake
    .
    Time-lapse length (30 fps):
    8 seconds and 26 frames.

  • 2 of 2 | Lake Tahoe at Emerald Bay with boats circling the island within

    View with alternate video source

    Scene notes:

    The continuation of another clip. The camera’s position has been moved away from the creek.
    Time-lapse length (30 fps):
    20 seconds and 22 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'); } }); });