Force full screen via link?

Hi. Is there any way to force fullscreen via the link?

Something like: https://w2g.tv/?r=testcode&fullscreen=1

Also is there any way to disable this when joining the room? https://i.imgur.com/XilAop1.png

And is it possible to go to the next video from the playlist via the API?

Thanks for getting in touch. There is no such option. Fullscreen requires a user interaction (click) to be activated. What would be your use case for this?

I am trying to create a system where the users doesnt have to interact with the browser. I am trying to manipulate the room only by using server, but I would need to enable full screen (since in my app the user cant interact with the browser).

Is there maybe like a function we can call in the window console to activate the fullscreen mode?

This is an ugly hack but it should work in console.

document.querySelector(".w2g-player").requestFullscreen()

Why not use the embed version of the site?

The embed version has this at the top of the page:

image

Also, when using document.querySelector(".w2g-player").requestFullscreen() it almost works, but the youtube iframe is still not fullscreen. so it looks like this:

EDIT: Using this makes the video fullscreen: document.querySelector(“video”).requestFullscreen()

But is there anyway to somehow emulate things like changing volume also by console? When only selecting the input and modifying its value, the actual input changes, but the audio volume doesnt.