Skip to main content

How to Show Local Images

Sources used in Eyeson video meetings aren't limited to server-hosted files - you can also use images directly from your local drive. This guide demonstrates how to overlay a local image onto your video stream.

export ACCESS_KEY=...
curl -X POST \
-F "file=@path/to/local/file.png" \
-F "z-index=1" \
"https://api.eyeson.team/rooms/$ACCESS_KEY/layers"

Removing Image Overlays

To remove an image overlay from the video stream, use the following API calls. This will clear the specified layer and remove the image from the meeting view.

curl -X DELETE "https://api.eyeson.team/rooms/$ACCESS_KEY/layers/1"