Moil Meeting Installation Guide

This guide provides step-by-step instructions to install and run the Moil Meeting application.

Operating System Requirements

Windows

  1. Download and install OBS Studio .

  2. After installation, open OBS and click Start Virtual Camera.

start camera

Start Camera in OBS

  1. To stop using OBS, simply close the application.

Linux

  1. Disable Secure Boot in BIOS.

  2. Install v4l2loopback with the following command:

    sudo apt install v4l2loopback-dkms
    

User Installation Guide

Download Moil Meeting

  • Go to the GitHub repository of Video Conference.

  • Navigate to Releases.

  • Download:

    • FisheyeVideoConferenceSystem-v1.1.6.exe for Windows

    • FisheyeVideoConferenceSystem-v1.1.6-linux.7z for Linux

video conference repository

Windows Installation

  1. Right-click the installer file → Run as Administrator.

  2. Follow the wizard by clicking Next.

  3. Choose installation directory → click Next.

run administrator
  1. Wait for installation to complete.

wait

You will find the program in the selected folder:

wait
  • FisheyeVideoConference.exe → to run the app

  • unins000 → to uninstall

After everything is set up, you are ready to use the Fisheye Video Conference system.

wait

Moil Meeting Application

Linux Installation

  1. Extract the .7z archive.

  2. Navigate into the extracted folder until you find install.sh and uninstall.sh.

  3. Run:

    ./install.sh   # to install
    ./uninstall.sh # to uninstall
    

Once installed, the app will appear on your desktop.

run administrator

Linux Moil Meeting Application

Developer Installation Guide

Requirements:

  • Ubuntu or Windows

  • Python >= 3.7

  • Git installed

Clone the Repository

git clone https://github.com/username/video-conference-using-fisheye.git
cd video-conference-using-fisheye

Create Virtual Environment

Before installing the library requirements, you should upgrade the existing PIP package to the latest version. You can use the command:

$ pip instal --upgrade pip

Check Python and pip:

python --version
pip --version

Create and activate venv:

  • Windows:

    python -m venv venv
    venv\Scripts\activate
    
  • Linux/macOS:

    python3 -m venv venv
    source venv/bin/activate
    

Install Requirements

Install dependencies:

pip install opencv-python pyvirtualcam ultralytics pygrabber mediapipe

Verify installation by importing packages in Python:

import cv2
import pyvirtualcam
import ultralytics
import pygrabber
import mediapipe
print("All packages loaded successfully!")

Then, install everything at once by running:

pip install -r requirements.txt

Run the Application

Navigate to src folder and run:

python main.py

Or open in PyCharm:

  1. Open PyCharm → Open Project → select repository root.

  2. Configure interpreter → choose virtual environment created earlier.

  3. Run main.py.

Now you can use Video Conference Using Fisheye.