DEV Community

Discussion on: Adding Video Chat To Your Laravel App

 
ruchitdarji profile image
Ruchit Darji

Hello Kofi Mupati,

I have fixed this issue in my video chat functionality..

I have added "muted" parameter in placed user video element div in vue component file.

Many many thanks for your guidance and documentation...

Thread Thread
 
mupati profile image
Kofi Mupati

That's good to know. All the best Ruchit Darji

Thread Thread
 
ruchitdarji profile image
Ruchit Darji

Hello Kofi Mupati,

I have one question related this case...

how to placed video call is automatically ended within 30 seconds if the receiver user cannot accept the incoming call ???

So, Please suggest how can i do this...

Thread Thread
 
mupati profile image
Kofi Mupati

when you place the call, you can set a timer which calls the endCall after the specified period. Play around with the setTimeout function in JavaScript.

Thread Thread
 
ruchitdarji profile image
Ruchit Darji

Thank you again for your guidance...