i m using the cloudflare stream player

i'm using the cloudflare stream player and am trying to pause a video if it is playing when a users clicks on another tab
const player = Stream(playerFrame);
if (document.visibilityState === "hidden") {
  console.log("pausing");
  player.pause();
}

My log shows up but the player doesn't pause. Any ideas / suggestions?
Was this page helpful?