Miroslav Pejic

Results 80 comments of Miroslav Pejic

Hi @aarush-paul, Maybe because of the [Turn](https://webrtc.org/getting-started/turn-server) server. [Here](https://webrtc.github.io/samples/src/content/peerconnection/trickle-ice/) you can check. - A `STUN` server works if you can gather a candidate with type `srflx` - A `TURN` server...

Don't forget to add the Stun Server too: ```js const ICE_SERVERS = [ { urls: "stun:YourStun" }, { urls: "turn:YourTurn", username: "turnUsername", credential: "turnPassword", }, ]; ``` I recommend only...

I'm agree with @vasanthv, If that doesn't work with `viagenie.ca`, try also this one: ```js const ICE_SERVERS = [{ urls: "turn:openrelay.metered.ca:443", username: "openrelayproject", credential: "openrelayproject"}]; ``` Regards.

## Useful links: - https://github.com/streamproc/Record-Entire-Meeting - https://github.com/streamproc/MediaStreamRecorder - https://www.webrtc-experiment.com/msr/MultiStreamRecorder.html - https://github.com/streamproc/MediaStreamRecorder/blob/master/demos/MultiStreamRecorder.html - https://github.com/muaz-khan/MultiStreamsMixer

Hi @ianramzy and @Chaphasilor You can try #mirotalk. `Mirotalk` is also an open source project, that allow you to do video calls, chat, screen sharing and many more. Powered by...

![mirotalk-logo](https://user-images.githubusercontent.com/70838434/164445553-5650f8de-66e0-48f0-bee6-0ec2bd13c23c.jpg) `Mirotalk` is an `open source` project, that allow you to do video calls, chat, screen sharing and many more. Powered by `WebRTC` entirely browser based. Simple, Secure & Fast....

Hello @adler-parobocz, thank you so much, I'm glad you like it!

check it out: https://github.com/muaz-khan/RecordRTC/wiki/Record-Multiple-Streams-Into-Single-File

Hello @toshvelaga, Very interesting, I'll take a look at them. Thank you so much for mentioning me in your article and for the compliments, that motivates me to make it...

Let's say that the idea of MiroTalk's recording functionality was not to depend on any external server. If necessary, the participant starts his own registration, everything is saved in the...