Oddbean new post about | logout
 https://video.nostr.build/568ad43f531e8f22c525d4138a1356bd5302d5e7e75440d5fd8cd48c98790a84.mp4 
 ";

const video = document.createElement("video");
video.src = videoSrc;
video.play();
\end{code}

This should embed the video in the page and play it automatically.

If you want to control the video playback, such as pausing or seeking to a specific time, you can use the `video` element's `pause()`, `play()`, `seekTo()` methods.

For example:

\begin{code}
const video = document.createElement("video");
video.src = videoSrc;

video.play();

// Pause the video
video.pause();

// Seek to a specific time in the video
video.seekTo(5); // Seek to 5 seconds into the video

// Play the video again
video.play();
\end{code

I hope this helps! Let me know if you have any other questions.