Compile from source

Standard procedure

  1. Install git and Go ≥ 1.25.

  2. Clone the repository, enter into the folder and start the building process:

    git clone https://github.com/bluenviron/mediamtx
    cd mediamtx
    go generate ./...
    CGO_ENABLED=0 go build .

    This will produce the mediamtx binary.

Custom libcamera

If you need to use a custom or external libcamera to interact with some Raspberry Pi Camera model that requires it, additional steps are required:

  1. Download mediamtx-rpicamera source code and compile it against the external libcamera. Instructions are in the repository.

  2. Install git and Go ≥ 1.25.

  3. Clone the MediaMTX repository:

    git clone https://github.com/bluenviron/mediamtx
  4. Inside the MediaMTX folder, run:

    go generate ./...
  5. Copy build/mtxrpicam_32 and/or build/mtxrpicam_64 (depending on the architecture) from mediamtx-rpicamera to mediamtx, inside folder internal/staticsources/rpicamera/, overriding existing folders.

  6. Compile:

    go run .

    This will produce the mediamtx binary.

Cross compile

Cross compilation allows to build an executable for a target machine from another machine with different operating system or architecture. This is useful in case the target machine doesn’t have enough resources for compilation or if you don’t want to install the compilation dependencies on it.

  1. On the machine you want to use to compile, install git and Go ≥ 1.25.

  2. Clone the repository, enter into the folder and start the building process:

    git clone https://github.com/bluenviron/mediamtx
    cd mediamtx
    go generate ./...
    CGO_ENABLED=0 GOOS=my_os GOARCH=my_arch go build .

    Replace my_os and my_arch with the operating system and architecture of your target machine. A list of all supported combinations can be obtained with:

    go tool dist list

    For instance:

    CGO_ENABLED=0 GOOS=linux GOARCH=arm64 go build .

    In case of the arm architecture, there’s an additional flag available, GOARM, that allows to set the ARM version:

    CGO_ENABLED=0 GOOS=linux GOARCH=arm64 GOARM=7 go build .

    In case of the mips architecture, there’s an additional flag available, GOMIPS, that allows to set additional parameters:

    CGO_ENABLED=0 GOOS=linux GOARCH=mips GOMIPS=softfloat go build .

    The command will produce the mediamtx binary.

Compile for all supported platforms

Install Docker and launch:

make binaries

The command will produce tarballs in folder binaries/.

Docker image

The official Docker image can be recompiled by following these steps:

  1. Build binaries for all supported platforms:

    make binaries
  2. Build the image by using one of the Dockerfiles inside the docker/ folder:

    docker build . -f docker/standard.Dockerfile -t my-mediamtx

    This will produce the my-mediamtx image.

    A Dockerfile is available for each image variant (standard.Dockerfile, ffmpeg.Dockerfile, rpi.Dockerfile, ffmpeg-rpi.Dockerfile).