The Video namespace contains the classes and functions that you need to create a video conferencing application.
The RoomSession class is the main interface for managing video room sessions.
Control devices within a room session
Manage media playback in a room session
Handle recording functionality
Manage screen sharing in a room session
RoomDevice
Use RoomSessionDevice instead.
RoomScreenShare
Use RoomSessionScreenShare instead.
Functions
Const createRoomObject(roomOptions): Promise<Room>Use RoomSession instead.
Using Video.createRoomObject() you can create a RoomObject to join a room.
Promise<Room>
With an HTMLDivElement with id=“root” in the DOM.
Const joinRoom(roomOptions): Promise<Room>Use RoomSession instead.
Using Video.joinRoom() you can automatically join a room.
Promise<Room>
With an HTMLDivElement with id=“root” in the DOM.