I want to turn my video on by default on Joining the session

const config = {
videoSDKJWT: zoomTokenParam || “”,
sessionName: sessionParam || “Default Session”,
userName: doctorName || “FV Hospital”,
sessionPasscode: “”,
features: [“video”, “audio”, “settings”, “users”],
options: { init: {enforceMultipleVideos: true}, audio: {}, video: {} },
};

what should i pass in audio object so that my video should be turned on by default on joining the session
or there’s other option like when i join the session it shows me pormpt to enable audio
so if there’s option to show prompt for video too !

Hi @gaurav3saha,

At this time, you cannot change the camera options with the Ui Toolkit, (which I’m assuming you’re using based on your config option).

The ‘enable audio’ button appearing when you join is coming from your browser, not the application. You should see an additional prompt for your camera, but this will only allow camera access, not automatically start your camera.

Thanks,
Rehema