mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-12-26 00:46:24 +01:00
HIGH PRIORITY - Video Transcoding/Streaming: - mediamtx - RTSP/RTMP/HLS streaming server with ffmpeg - threadfin - M3U proxy for Plex/Emby/Jellyfin DVR (ffmpeg+VLC) - nxwitness - Nx Witness VMS/NVR surveillance with ffmpeg - metube - YouTube downloader with ffmpeg conversion - uhf - UHF DVR/recording server with ffmpeg - dispatcharr - IPTV dispatch system (ffmpeg+streamlink) - convertx - Universal file converter (ffmpeg+libva2) - teddycloud - Toniebox cloud with ffmpeg MEDIUM PRIORITY - Audio/Ambient Lighting: - navidrome - Music streaming server with ffmpeg transcoding - koel - Music streaming server with ffmpeg transcoding - audiobookshelf - Audiobook server with ffmpeg processing - hyperhdr - HDR ambient lighting with video capture - hyperion - Ambient lighting with video capture All apps now have: - var_gpu=yes in ct scripts for /dev/dri passthrough - setup_hwaccel in install scripts for driver installation
43 lines
939 B
Bash
43 lines
939 B
Bash
#!/usr/bin/env bash
|
|
|
|
# Copyright (c) 2021-2025 tteck
|
|
# Author: tteck (tteckster)
|
|
# License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE
|
|
# Source: https://github.com/bluenviron/mediamtx
|
|
|
|
source /dev/stdin <<<"$FUNCTIONS_FILE_PATH"
|
|
color
|
|
verb_ip6
|
|
catch_errors
|
|
setting_up_container
|
|
network_check
|
|
update_os
|
|
setup_hwaccel
|
|
|
|
msg_info "Installing Dependencies"
|
|
$STD apt install -y ffmpeg
|
|
msg_ok "Installed Dependencies"
|
|
|
|
fetch_and_deploy_gh_release "mediamtx" "bluenviron/mediamtx" "prebuild" "latest" "/opt/mediamtx" "mediamtx*linux_amd64.tar.gz"
|
|
|
|
msg_info "Creating Service"
|
|
cat <<EOF >/etc/systemd/system/mediamtx.service
|
|
[Unit]
|
|
Description=MediaMTX
|
|
After=syslog.target network-online.target
|
|
|
|
[Service]
|
|
ExecStart=/opt/mediamtx/./mediamtx
|
|
WorkingDirectory=/opt/mediamtx
|
|
Restart=always
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
EOF
|
|
systemctl enable -q --now mediamtx
|
|
msg_ok "Created Service"
|
|
|
|
motd_ssh
|
|
customize
|
|
cleanup_lxc
|