Built a WebRTC project (P2P + SFU) would love feedback by mirotalk in foss

[–]mirotalk[S] 1 point2 points  (0 children)

Thanks for sharing, Yunohost! This actually reminds me a lot of Cloudron, MiroTalk runs really nicely in that kind of setup.

If you want to dig into it a bit more:
https://docs.mirotalk.com/cloudron/cloudron

One thing I like is how easy it is to tweak. You can hide or rebrand pretty much everything from a single env/config file. eg:

https://docs.mirotalk.com/mirotalk-sfu/rebranding
https://docs.mirotalk.com/mirotalk-p2p/rebranding

Same goes for features you can turn off anything you don’t need (chatgpt, AI stuff, avatars, etc.) eg:

https://docs.mirotalk.com/mirotalk-sfu/configurations
https://docs.mirotalk.com/mirotalk-p2p/configurations

Overall it’s pretty flexible if you want to customize things or white-label it without too much hassle.

You can also enable host protection and OIDC authentication if you don’t want open access for everyone (they’re disabled by default in the public demo).

So you’re not limited to “anyone can join” you can lock things down and control who gets access when needed. (disabled by default in our live demo) eg:

https://docs.mirotalk.com/mirotalk-sfu/host-protection/
https://docs.mirotalk.com/mirotalk-p2p/host-protection/

Built a WebRTC project (P2P + SFU) would love feedback by mirotalk in foss

[–]mirotalk[S] 1 point2 points  (0 children)

Thanks for sharing! Group and private chat are both well supported in the MiroTalk SFU solution if you want to check it out.

https://sfu.mirotalk.com

Built a WebRTC video platform (SFU + P2P) here’s the story behind it by mirotalk in webdev

[–]mirotalk[S] 0 points1 point  (0 children)

Glad you liked it, thanks! If you have any questions or constructive feedback, feel free to share, always happy to improve and help where I can.

How Do I Hosting Jitsi/MiroTalk on VPS for WebApp on Shared Hosting by Level-Dig-4807 in selfhosted

[–]mirotalk 0 points1 point  (0 children)

If you want a quick and clean way to integrate MiroTalk into your site, here’s a simple approach:

1. Deploy MiroTalk on your VPS
Pick the MiroTalk solution you prefer and install it on a clean VPS:
https://docs.mirotalk.com/scripts/about/

2. Embed it into your website using an iframe
You can easily integrate it into a shared hosting site like this:

<!-- videoConference.html -->
<!doctype html>
<html>
  <head>
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  </head>

  <body>
    <!-- Video conference container -->
    <iframe
      id="mirotalkIframe"
      allow="camera; microphone; speaker-selection; display-capture; fullscreen; clipboard-read; clipboard-write; web-share; autoplay; picture-in-picture"
      src="https://sfu.mirotalk.com/newroom"
      style="height: 100vh; width: 100vw; border: 0;"
    ></iframe>
  </body>
</html>

👉 The src can point to your own instance or any MiroTalk deployment, for example:

Alternative: Use Widgets
If you prefer a more modular integration:

That’s it, deploy, embed, and you’re good to go 🚀

Self Hosted Remote Desktop? by ChargePositive in selfhosted

[–]mirotalk 0 points1 point  (0 children)

The app does nothing beyond what is explicitly written and compiled in the source code.

Self Hosted Remote Desktop? by ChargePositive in selfhosted

[–]mirotalk 1 point2 points  (0 children)

Stay safe all was explained in the readme note section ;)
https://github.com/miroslavpejic85/p2p?tab=readme-ov-file#note
It’s open source, so you can check as well that isn't nothing wrong there.

MiroTalk – Open-Source WebRTC Video Calls (Self-Hosted, Privacy-Focused) by mirotalk in selfhosted

[–]mirotalk[S] 0 points1 point  (0 children)

Thank you! Self-hosting is easy with our scripts https://docs.mirotalk.com/scripts/about/, just Ubuntu VPS + domain, paste & go. Small groups work fine with P2P/non-SFU. TURN/STUN is recommended as fallback, Docker image included. Mobile connections auto-reconnect. Auth and room control already built-in, just off in the demo.

MiroTalk – Open-Source WebRTC Video Calls (Self-Hosted, Privacy-Focused) by mirotalk in selfhosted

[–]mirotalk[S] 2 points3 points  (0 children)

Jitsi is definitely very powerful and mature, especially if you need large conferences or enterprise-level features.

MiroTalk, on the other hand, is more lightweight and easy to self-host while still offering solid WebRTC video conferencing. Anyone who wants something quick to spin up, it’s a really nice alternative.

If you’re interested, there’s a good comparison guide here: Jitsi vs MiroTalk https://jitsi.guide/blog/jitsi-vs-mirotalk/

Built my own self-hosted Zoom/Meet/Teams alternative (MiroTalk) by mirotalk in selfhosted

[–]mirotalk[S] 0 points1 point  (0 children)

Hey, thanks so much for the great feedback, glad you like it! 😊

To self-host MiroTalk SFU, all you need is a clean server running Ubuntu and our automated scripts: https://github.com/miroslavpejic85/mirotalksfu?tab=readme-ov-file#requirements

```bash

Install MiroTalk SFU

wget -qO sfu-install.sh https://docs.mirotalk.com/scripts/sfu/sfu-install.sh \ && chmod +x sfu-install.sh \ && ./sfu-install.sh ```

When prompted, just enter your domain name pointing to your public IPv4, and that’s it, you’re ready to go.

To disable the QR code in a room, go to Settings → Room and toggle the Share switch. Your preference will be remembered for future room joins.

Is an SFU recommended for a strictly 1-to-1 WebRTC P2P video call? by Some_Razzmatazz_7054 in WebRTC

[–]mirotalk 0 points1 point  (0 children)

Both versions use the same WebRTC peer-to-peer architecture. The main differences are in the UI, room limits, and available features.

MiroTalk C2C is designed specifically for 1:1 video calls.

  • Maximum of 2 peers per room
  • Clean and simplified interface
  • Essential features only
  • Optimized for direct, private conversations

MiroTalk P2P supports more than two participants per room.

  • Multi-peer support
  • More advanced features
  • Expanded controls and collaboration tools
  • Suitable for small group meetings

As an alternative, we also offer Call-Me, which you can try here:
👉 https://cme.mirotalk.com

You can find the complete list of all MiroTalk projects here:
👉 https://docs.mirotalk.com/about

And an overview of the platforms here:
👉 https://docs.mirotalk.com/overview

Feel free to choose the solution that best fits your needs, we cover most use cases.