MiroTalk P2P - WebRTC Secure Real-Time Video Conferences Live Chat Online Meetings File Sharing


MiroTalk P2P - WebRTC Secure Real-Time Video Conferences Live Chat Online Meetings File Sharing

Live demo: https://p2p.mirotalk.com ⭐️⭐️⭐️⭐️⭐️

No signups. No downloads, No external plugins, Self-Contained! Works on any platform in all major browsers!

support-browsers

Fast integration

mirotalk-iframe-integration

To integrate MiroTalk P2P as a service into your website or app, you can easily achieve this by utilizing an iframe and adding a few lines of code.

Check out the example here

<iframe
    allow="camera; microphone; display-capture; fullscreen; clipboard-read; clipboard-write; autoplay" 
    src="https://p2p.mirotalk.com/newcall" 
    style="height: 100vh; width: 100vw; border: 0px;" 
></iframe>

Description

MiroTalk is the ultimate solution for real-time video conferences, harnessing the power of peer-to-peer WebRTC technology. This groundbreaking web application empowers you to host seamless, secure, and interactive video conferences with ease, making remote collaboration a breeze. The system is self-contained and requires no external services or APIs. It has its own signaling server developed using NodeJS and Socket.io. This setup allows it to host unlimited meetings indefinitely, making it a self-sufficient solution for online meetings. A good alternative to Zoom, Google Meet, Teams.

mirotalk-webrtc-p2p

mirotalk-webrtc-features

mirotalk-webrtc-video-streaming

mirotalk-webrtc-audio-streaming

mirotalk-webrtc-screen-sharing

mirotalk-webrtc-chat

mirotalk-webrtc-chatgpt

mirotalk-webrtc-whiteboard

mirotalk-webrtc-file-sharing

mirotalk-webrtc-video-audio-sharing

mirotalk-webrtc-recording

mirotalk-rest-apis

mirotalk-webrtc-privacy-security

mirotalk-webrtc-use-cases

mirotalk-webrtc-world

mirotalk-stats

mirotalk-p2p-feedback

With over ⭐️ 2.4k stars! ⭐️, our platform has garnered significant recognition and support from the developer community. We are proud to be sponsored by reputable organizations, further validating the quality and value of our services. This endorsement from our sponsors highlights the trust and confidence they have in our platform’s capabilities. By leveraging the combined expertise and resources of our sponsors, we are able to continuously enhance and innovate our offerings, ensuring an exceptional user experience. Join the growing community of satisfied users and experience the benefits of a platform that has earned the admiration of both developers and sponsors alike.

mirotalk-sponsors

Elevate your video conferencing experience with MiroTalk. Unlock the power of real-time collaboration, seamless connectivity, and secure communication. Embrace the future of remote work and enhance productivity across your teams. Get MiroTalk today and redefine the way you connect and collaborate online!

Changelogs

The changelogs link accompanies each item, eliminating the need for lengthy descriptions here. Dive right in to track our progress and discover the latest updates!

MiroTalk is constantly evolving, and we're excited to share every step of the journey with you. Dive into our complete changelogs to track every update and improvement. Stay informed, stay engaged, and be a part of our progress. 

Free Installation for Extended License

Unlock the full potential of our Extended License with a Free Installation, exclusively for you, provided your host server meets the necessary requirements. Don’t miss out on this opportunity reach out to us here and seize the benefits today!

Exclusive Offer

mirotalk-webrtc-sale

Claim €⁠20 in Hetzner Cloud Credits! Your exclusive link awaits – seize the opportunity today!

https://hetzner.cloud/?ref=XdRifCzCK3bn

buy-now

Why Choose MiroTalk?

  • High-Quality Video Conferencing: MiroTalk leverages WebRTC’s advanced capabilities to deliver crystal-clear video and audio quality, ensuring that every participant feels fully immersed in the conference. Say goodbye to pixelated or laggy video streams.
  • Peer-to-Peer Connectivity: With its innovative peer-to-peer architecture, MiroTalk establishes direct connections between conference participants, eliminating the need for intermediary servers. This results in low-latency, ultra-fast communication that fosters real-time collaboration.
  • Multi-User Conferences: Whether you’re organizing a small team meeting or a large-scale webinar, MiroTalk has got you covered. Host video conferences with multiple participants simultaneously, allowing seamless interactions and engaging discussions.
  • Interactive Collaboration Tools: Enhance your conferences with a rich set of collaborative features. Share screens, documents, and presentations, annotate in real-time, and utilize a virtual whiteboard to foster teamwork and boost productivity.
  • Secure and Encrypted Communication: MiroTalk prioritizes the privacy and security of your conference participants. All video, audio, and data transmissions are encrypted end-to-end, ensuring that sensitive information remains confidential and protected from unauthorized access.
  • Customizable Interface: Tailor MiroTalk’s interface to align with your brand identity. Customize the colors, logo, and overall look and feel to provide a seamless and cohesive user experience that reflects your organization’s professionalism.
  • Cross-Platform Compatibility: MiroTalk is designed to work flawlessly across major web browsers and operating systems. Participants can join conferences using their preferred devices, including desktops, laptops, tablets, and smartphones, ensuring convenience and accessibility.
  • Recording and Playback: Capture important conference sessions with ease by recording the video and audio streams. Enable participants who missed the live event to catch up later, or use the recordings for training purposes or knowledge sharing.
  • User-Friendly Interface: MiroTalk boasts an intuitive and user-friendly interface that requires minimal technical expertise. Hosts and participants can quickly join conferences, access features, and navigate the platform effortlessly, enhancing the overall user experience.

Industries

MiroTalk serves a wide range of industries, offering versatile solutions for various purposes:

  • Educational: Ideal for conducting online lessons, tutorials, and video streaming in the education sector. It enables seamless communication and interaction between teachers and students.
  • Health-care: Perfect for virtual health-care consultations, connecting medical professionals with patients remotely. MiroTalk ensures secure and reliable video communication for telemedicine purposes.
  • Support and Online Sales: Empowers businesses to offer video consultations to provide personalized support to customers. Online sales, real estate agents, and car resellers can use MiroTalk for virtual tours and consultations, enhancing customer experience.
  • Social Media: Integrating MiroTalk’s real-time video capabilities into social media platforms enables users to engage in live video interactions, fostering real-time connections and engagement.
  • Real-time Streaming: MiroTalk is well-suited for any scenario where peer-to-peer video streaming is required. It enables direct and efficient video communication between individuals.
  • Shows, Live Performances, and Events: The platform is an excellent choice for hosting different types of shows, live performances, and events. Its reliable streaming capabilities ensure a seamless viewing experience for audiences.

MiroTalk’s adaptability and robust features make it a versatile choice across industries, empowering seamless video communication and collaboration in various professional and social contexts.

Requirements

Quick Start

Start the app using nodejs

# Copy .env.template in .env and edit it if needed
$ cp .env.template .env

# Install dependencies
$ npm install

# Run the app
$ npm start

Start the app using docker and docker-compose

# Copy .env.template in .env and edit it if needed
$ cp .env.template .env

# Copy docker-compose.template.yml in docker-compose.yml and edit it if needed
$ cp docker-compose.template.yml docker-compose.yml

# Building the image
$ docker-compose build

# Run the image in a container
$ docker-compose up #-d

Run as daemon

Running an app as a daemon is often useful for server applications, background services, or any program that needs to run continuously without user intervention. It ensures that the application remains active, even when there are no active user sessions.

To running the app as a daemon with nodejs use PM2

# Install pm2
$ npm install -g pm2

# Start the server
$ pm2 start app/src/server.js

# Takes a snapshot
$ pm2 save

# Add it on startup
$ pm2 startup

To running the app as a daemon with docker:

$ docker-compose up -d

Rest API

The API documentation you can check it out here

The response will give you a entry point / Room URL for your meeting:

curl -X POST "https://p2p.mirotalk.com/api/v1/meeting" -H "authorization: mirotalk_default_secret" -H "Content-Type: application/json" 

Direct join

https://p2p.mirotalk.com/join?room=test&name=mirotalk&audio=false&video=false&screen=false&notify=false

  • room: roomId (string)
  • name: username (string)
  • audio: audio stream (boolean)
  • video: video stream (boolean)
  • screen: screen share (boolean)
  • notify: welcome message (boolean)

Documentations

The documentations you can found in the docs folder of the project

  • coturn.md – how to install your own Stun/Turn.
  • ngrok.md – how to expose the app from your local pc in https.
  • self-hosting.md – how to self host the project on your own server, vds or vps.

If you not have your own server, i recommend Hetzner (CPX11 it’s enough) or Contabo as OS: Ubuntu 20.04 LTS / 22.04.1 LTS. A domain or subdomain name that point to Your Server public IPv4.

Questions, discussions, help & support

We’d love to have you join our wonderful MiroTalk community on the official forum! It’s a place where you can find a wealth of answers and connect with friendly individuals who share your interests. Just click on the link below to hop right in: Official Forum. We can’t wait to meet you and have some exciting discussions together!

Thank you for purchasing my item. If you have any questions, please feel free to email via my user page contact form here.

mirotalk-ai