This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import "bootstrap"; | |
import { webcamPreview, videoConnect, videoDisconnect, setUpLocalMedia, RemoteParticipant, toggleFullscreen, updateVideoContainerRatio, toggleHideShowElement, sleep, mobileCheck, muteOrUnmuteYourMedia, muteYourAudio, unmuteYourAudio, muteYourVideo, unmuteYourVideo, participantMutedOrUnmutedMedia } from "../plugins/twilio"; | |
const screenHeight = window.screen.height; | |
const screenWidth = window.screen.width; | |
let room; | |
// Display local video => Ask video autorization from browser | |
document.querySelector("#btn-video-preview")?.addEventListener("click", event => { | |
webcamPreview(); |