DEV Community

Discussion on: Adding Video Chat To Your Laravel App

Collapse
 
mupati profile image
Kofi Mupati • Edited

This will take some tweaking. You need to send an event to the caller that will inform them to cancel the call. I've not thought through the use case for multiple incoming calls. This is beyond the scope of what I can offer in a demo application.

Collapse
 
ruchitdarji profile image
Ruchit Darji • Edited

So, All time refresh browser page of video call at both side ???

Because I need hangup first call and attend second call without page refresh...

But you suggest refresh both browsers to call again for same user second time calling...

Thread Thread
 
mupati profile image
Kofi Mupati

that is not necessary. Read more on how to do all that through websocket events and listeners.

Thread Thread
 
ruchitdarji profile image
Ruchit Darji

Hello Kofi Mupati,

Any reference to add a noise canceling filter to the video call...right now if the volume is high there is a lot of ecco...

Thread Thread
 
mupati profile image
Kofi Mupati

I've not looked into that yet.

Thread Thread
 
ruchitdarji profile image
Ruchit Darji

Let us know if you find anything about this. It will be very helpful and grateful for us.

Thread Thread
 
ruchitdarji profile image
Ruchit Darji

Hello Kofi Mupati,

did you find anything related to this echo issue in the video call ???

I have spent many days to solving this issue but not getting anything solution in this.

Please suggest any reference links where can i solve this issue in my video chat application.

Thread Thread
 
mupati profile image
Kofi Mupati

I've not had time to look into that yet.

Thread Thread
 
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...