// Function to pause the video
function pauseVideoAfter5Minutes() {
  // Find the video element on the page (modify the selector as needed)
  var videoElement = document.querySelector('iframe[src="https://video.squarespace-cdn.com/content/v1/6232c88e2e499d736ef5091d/dfc8d65a-e239-4ff5-9d16-f6cde5d16240/playlist.m3u8"]'); // Change the video URL as needed
  
  if (videoElement) {
    // Wait for 5 minutes and then pause the video
    setTimeout(function () {
      videoElement.contentWindow.postMessage('{"method":"pause"}', '*');
    }, 300000); // 300,000 milliseconds = 5 minutes
  }
}

// Call the function when the page is loaded
window.addEventListener('load', pauseVideoAfter5Minutes);

Make it stand out.

It all begins with an idea. Maybe you want to launch a business. Maybe you want to turn a hobby into something more. Or maybe you have a creative project to share with the world. Whatever it is, the way you tell your story online can make all the difference.