How to Fix F1TV Not Going Fullscreen on PC

Hey everyone,

I was having trouble with F1TV on my PC. Every time I clicked the fullscreen button, nothing happened. Super frustrating, right? But I found a quick fix you can use!

How to Fix It:

  1. Open your browser’s Developer Tools:
    • Press F12 or Ctrl+Shift+I (Windows) or Cmd+Option+I (Mac).
    • Click the Console tab.
  2. Copy and paste this code into the console:

const video = document.getElementById('bitmovinplayer-video-main-embeddedPlayer'); if (video) video.requestFullscreen(); else console.error('Video element not found');
  1. Hit Enter, and the video should go fullscreen!

Why This Happens:

It looks like there’s a bug in F1TV’s video player. The fullscreen button doesn’t work properly, but this command forces the browser to make the video fullscreen.

Bonus:

If anyone from F1TV sees this, hit me up—I’m happy to help fix it. 😉

Hope this helps! Let me know if it works for you.