Skip to main content

Use local video overlay to make it feel faster and with mirrored display

· 6 min read
Stefan Benicke
Senior Developer @ Eyeson

Eyeson video meetings are based on the MCU+ Single-Stream Technology that provides many advantages like "everyone sees the same at the same time", it lets you create virtual rooms with its layout and layer features and much more.

But this also means, that you see yourself like all other participants see you. And unfortunately, this is not what you are used to. In other meeting tools your local video is usually shown instantly and mirrored based on the following trick:

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

Using Ghost to Create a RTMP-to-webrtc Proxy

· 5 min read
Florian Limberger
Senior Developer @ Eyeson

Integrating streams from drones or body-cams into video meetings is a nice-to-have. Since lots of devices of this kind provide their stream via RTMP bridging RTMP to webrtc is the task to solve.

With ghost we provide a go-based webrtc client which connects to an Eyeson meeting as a client and allows to stream in and out of that meeting. This client can be easily combined with a go RTMP server to achieve this.

Cover image

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.

Stop Meetings on Inactivity

· 5 min read
Christoph Lipautz
Senior Developer @ Eyeson

Any Eyeson video conference will stay open as long as at least one participant is present, and shutdown after a short waiting time when the last user has disconnected. In case your user did miss to disconnect or is gone for some other reason, we strongly suggest to use some sort of inactivity detection and auto-shutdown in your client applications. Using the default web UI we already got you covered: Any participant will be shown a dialog if there is no action detected for a long time.

Cover image

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