FullHD 1080p resolution

Hi,

according to https://docs.openvidu.io/en/2.12.0/api/openvidu-browser/interfaces/publisherproperties.html
the “resolution” property only takes one of these 3 settings:
“320x240”
“640x480”
“1280x720”

What about FullHD 1080?
According to
https://doc-kurento.readthedocs.io/en/latest/user/troubleshooting.html#cpu-usage-grows-too-high
Kurento Media Server has some issues with FullHD streams, but they allow it at least.
But OpenVidu does not even provide an option for that.

Is there a possiblity to publish/stream through OpenVidu in FullHD nonetheless?

Many Thanks in Advance
Marcel

Sure. One thing is that openvidu-browser frontend library doesn’t allow initializing a Publisher object with a FullHD resolution, but you can always initialize it by directly passing the MediaStreamTracks (audio and/or video) you want to use. And those tracks can be whatever you like. We limited it to standard HD to prevent by default any possible issue, but you can use any video track you like.

Use audioSource and videoSource properties when initilizing a Publisher object, passing MediaStreamTracks: https://docs.openvidu.io/en/2.14.0/api/openvidu-browser/interfaces/publisherproperties.html

Hi Pablo,

thank you so much for your help.
That actually did the job :slight_smile:

Cheers
Marcel

1 Like