mirror of
https://github.com/tschettervictor/bsd-apps.git
synced 2025-12-11 01:19:56 +01:00
46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
#!/bin/sh
|
|
# Install MediaMTX
|
|
|
|
GO_VERSION="125"
|
|
|
|
# Check for Root Privileges
|
|
if ! [ $(id -u) = 0 ]; then
|
|
echo "This script must be run with root privileges"
|
|
exit 1
|
|
fi
|
|
|
|
# Install Packages
|
|
pkg install -y \
|
|
git-lite \
|
|
go${GO_VERSION}
|
|
|
|
# Create Directories
|
|
mkdir -p /usr/local/etc/mediamtx
|
|
mkdir -p /usr/local/etc/rc.d
|
|
|
|
# MediaMTX Setup
|
|
git clone https://github.com/bluenviron/mediamtx /mediamtx
|
|
cd /mediamtx && go${GO_VERSION} generate ./...
|
|
cd /mediamtx && go${GO_VERSION} build .
|
|
cp -f /mediamtx/mediamtx /usr/local/bin/mediamtx
|
|
chmod +x /usr/local/bin/mediamtx
|
|
if [ ! -f "/usr/local/etc/mediamtx/mediamtx.yml" ]; then
|
|
cp /mediamtx/mediamtx.yml /usr/local/etc/mediamtx/
|
|
fi
|
|
rm -R /mediamtx
|
|
fetch -o /usr/local/etc/rc.d/mediamtx https://raw.githubusercontent.com/tschettervictor/bsd-apps/main/mediamtx/includes/mediamtx
|
|
chmod +x /usr/local/etc/rc.d/mediamtx
|
|
pw user add mediamtx -c mediamtx -u 1935 -d /nonexistent -s /usr/bin/nologin
|
|
chown -R mediamtx:mediamtx /usr/local/etc/mediamtx
|
|
|
|
# Enable and Start Services
|
|
sysrc mediamtx_config="/usr/local/etc/mediamtx/mediamtx.yml"
|
|
sysrc mediamtx_enable="YES"
|
|
service mediamtx start
|
|
|
|
# Done
|
|
echo "---------------"
|
|
echo "Installation Complete!"
|
|
echo "MediaMTX is now installed and running. See the config file to configure preferred streaming protocols."
|
|
echo "---------------"
|