Skip to main content

16 posts tagged with "eyeson-js"

View All Tags

Choose pre-selected screensharing media

· 2 min read
Stefan Benicke
Senior Developer @ Eyeson

What is this about?

In version 109, Chrome has rolled out a new media-picker where the order of display surfaces has changed. It has changed from screens/windows/tabs to tabs/windows/screens. Furthermore the pre-selection has changed too - from screens to tabs. Lucky for us, since version 107 of Chrome and Chromium based browsers, like Edge and Opera, there's an option that gives you back the control.

This article is showing how it can be controlled in your custom UI with eyeson-js since v1.8.5.

Cover image

Enjoy HD video meetings with widescreen mode

· 2 min read
Stefan Benicke
Senior Developer @ Eyeson

We're introducing Eyeson video meetings in 16:9 HD video format!

Cover image

How to start

The default aspect-ratio is still 4:3. In order to activate widescreen mode (aspect-ratio 16:9), you have to start a meeting via API and set the widescreen option to true.

For example using curl:

curl -X POST \
-H "Authorization: YOUR_API_KEY" \
-d "user[name]=John Doe" \
-d "options[widescreen]=true" \
https://api.eyeson.team/rooms

Custom UI - Connection Info

· 4 min read
Stefan Benicke
Senior Developer @ Eyeson

From now on you can include a connection quality indicator in your custom UI. This will give your users a quick feedback about their current audio / video quality.

Cover image

In its simplest form, you can use it as a traffic-light display for good / ok / bad connection. We also provide some more details and value, like bitrate, jitter, packet loss, and round-trip time.

The Screen Can Be Your Cam

· 3 min read
Stefan Benicke
Senior Developer @ Eyeson

Sending the screen capture is usualy only possible when displayed in the presentation view. This means, that only the presentation can be seen, but not the other participants.

With Screen Cam you can share your screen capture stream in a simple way instead of the camera stream. This way you can share your desktop, your browser or a browser tab (depending on the browser the client is using) as part of a meeting.

Cover image