Go to file
Santiago Lo Coco dba4fb2908 Update installation instructions 2025-01-01 18:43:39 +01:00
docker Fix more bugs and use dotenv library 2024-11-21 00:58:54 +01:00
getendpoints@82f1f66646 Update GetEndpoints (x2) 2025-01-01 16:16:44 +01:00
src Start GetEndpoints and populate db 2024-12-09 15:25:38 +01:00
templates Remove orphan containers 2024-12-09 15:37:47 +01:00
.env.dev Update .env.dev 2025-01-01 16:25:08 +01:00
.gitignore Update .gitignore 2024-11-21 00:21:31 +01:00
.gitmodules Start GetEndpoints and populate db 2024-12-09 15:25:38 +01:00
.pre-commit-config.yaml Add auto-generation of config files 2024-11-21 00:12:34 +01:00
README.md Update installation instructions 2025-01-01 18:43:39 +01:00
mhotspot.ps1 Add mhotspot.ps1 2024-10-13 18:09:43 +02:00

README.md

StartStreaming

Prerequisites

  1. Install:

    • Docker Desktop
    • OBS Studio
  2. Clone the repository and its submodule (use git clone --recursive or run git submodule update --init if you didn't clone it with the recursive parameter).

  3. Prepare the .env files

    In the root directory, copy .env.dev to .env and update with your environment-specific values.

    cp .env.dev .env
    

    In the .env file:

    • IP is the IP address to which the WebRTC server will be bound.
    • PORT_X is the WebRTC HTTP listener port, which can be used for WHIP and WHEP.
    • LISTENER_PORT_X is the WebRTC ICE/UDP port.

    Next, navigate to ./getendpoints/src and copy .env.dev to .env. Refer to the README.md in the getendpoints directory for further documentation.

  4. Set up the necessary OBS profiles and scene collections:

    Let N be the number of instances you want to create (i.e., the maximum number of PORT_X defined in the .env file).

    Repeat for each profile from X=1 to X=N:

    • Create a scene collection called ProfileX.
    • Add scenes and configure the input source (e.g., an HDMI card).
    • Create a profile called ProfileX.
    • Go to Settings -> Stream, set the Service to WHIP, and enter the endpoint for the respective MediaMTX server: http://{{IP}}:{{PORT_X}}/mystream/whip. You may need to tweak as well the streaming settings.

Run

The Docker image will automatically generate the necessary configurations for you. After finishing with the prerequisites, simply run the following command from the root repository:

docker run --rm -v ${PWD}:/app/data se23m504/configure

Then, run the powershell auto-generated script:

./start.bat

Build

The image is already available on DockerHub, but if you need to build it again for any reason, run the following command from the root directory:

docker build -t se23m504/configure ./src -f ./docker/Dockerfile