Lifecast.ai
Visit this page on Quest or Vision Pro to view the scene in VR! These are neural radiance field (NeRF) videos and photos compressed and rendered in Lifecast's ldi3 format. [video source]

NeRF volumetric VR video for Quest and Vision Pro has arrived, and it's open source

Open source immersive volumetric video for developers and VR filmmakers

Minimal example: embed volumetric video in a web page with WebXR and THREE.js

<html>
  <head>
  <script src="https://cdn.jsdelivr.net/gh/fbriggs/lifecast_public/lifecast.min.js"></script>
  </head>
  <body>
  <div id="player_div" style="width: 600px; height: 500px;"></div>
  <script>
  LifecastVideoPlayer.init({
    _media_urls: ["https://lifecast.ai/media/orrery_transp_ldi3.jpg"],
    _embed_in_div: "player_div",
  });
  </script>
  </body>
</html>