chromium/chrome/test/data/media/session/video-with-metadata.html

<!DOCTYPE html>
<html>
<head>
  <title>Test page showing a video with media session actions and metadata</title>
</head>
<body>
  <video id="video" controls loop>
    <source src="../bigbuck.webm">
  </video>
<script>
const video = document.getElementById('video');

// Called by the browser test to start playback. Note that the browser test
// needs to explicitly disable user gesture requirements for autoplay for this
// function to work.
function play() {
  video.play().then(_ => {
    setupMetadata();
    setupActionHandlers();
  });
}

function setupMetadata() {
  navigator.mediaSession.metadata = new MediaMetadata({
    title: "Big Buck Bunny",
    artist: "Blender Foundation"
  });
}

function setupActionHandlers() {
  // Add empty action handlers to tell the browser we want to show all the
  // possible action buttons.
  function doNothing() {}

  navigator.mediaSession.setActionHandler('previoustrack', doNothing);
  navigator.mediaSession.setActionHandler('nexttrack', doNothing);
  navigator.mediaSession.setActionHandler('seekbackward', doNothing);
  navigator.mediaSession.setActionHandler('seekforward', doNothing);
  navigator.mediaSession.setActionHandler('play', _ => { video.play(); });
  navigator.mediaSession.setActionHandler('pause', _ => { video.pause(); });
}

function disablePictureInPicture() {
  video.disablePictureInPicture = true;
}

function enablePictureInPicture() {
  video.disablePictureInPicture = false;
}
</script>
</body>
</html>