Prebuilt User Interface
Immediate Operational Readiness
-
Video Stream
Eyeson One View merges all incoming audio, video and data into a single video stream.
-
Panels
Flexible layout blocks for chat, snapshots, and connection stats, providing interactive components.
-
Main Menu
Provides quick access to core features and actions, optimized for rapid navigation within the interface.
-
More Options
Contains advanced settings, allowing deeper configuration without cluttering the main interface.
-
Settings Window
Contains detailed configuration options for precise control over device preferences, behaviours, etc.
Extended Functionalities



API Session Control
Each running Eyeson meeting is associated with an Access Key. This key is included in the meeting URL and acts as the unique identifier for the session. Developers can use the Access Key to interact with an active meeting through the Eyeson API. This allows applications to dynamically adjust the session while it is running, enabling functionality that goes beyond what is available in the default user interface.
For example, developers can inject overlays into the video stream, modify the layout of participants, or introduce media content during the meeting. These actions can be triggered programmatically from backend services, control systems, or automation tools.
export ACCESS_KEY=...
curl -X POST \
-d "url=https://docs.eyeson.com/img/examples/overlay_example.png" \
-d "z-index=1" \
"https://api.eyeson.team/rooms/$ACCESS_KEY/layers"
export ACCESS_KEY=...
curl -X POST \
-d "layout=custom" \
-d "name=custom-map" \
-d "map=[ \
[20, 80, 400, 400, \"auto\"], \
[440, 160, 400, 400, \"contain\"], \
[860, 240, 400, 400, \"cover\"] \
]" \
-d "users[]=" \
-d "users[]=" \
-d "users[]=" \
"https://api.eyeson.team/rooms/$ACCESS_KEY/layout"
export ACCESS_KEY=...
curl -X POST \
-d "url=https://docs.eyeson.com/video/examples/playback_example.mp4"
-d "play_id=mp4"
-d "name=example"
-d "loop_count=-1" #infinite loop
-d "audio=false"
"https://api.eyeson.team/rooms/$ACCESS_KEY/playbacks"

