Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion ct/dispatcharr.sh
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,20 @@ EOF
msg_ok "Migrated Nginx Configuration"
fi

ensure_dependencies vlc-bin vlc-plugin-base
ensure_dependencies vlc-bin vlc-plugin-base build-essential autoconf libtool libargtable2-dev libavformat-dev libsdl2-dev libswscale-dev

if ! command -v comskip &> /dev/null; then
msg_info "Compiling Comskip"
if [[ ! -d "/opt/Comskip" ]]; then
fetch_and_deploy_from_url "https://github.com/erikkaashoek/Comskip/archive/refs/heads/master.tar.gz" "/opt/Comskip"
fi
cd /opt/Comskip
$STD ./autogen.sh
$STD ./configure
$STD make
$STD make install
msg_ok "Compiled and Installed Comskip"
fi

if check_for_gh_release "Dispatcharr" "Dispatcharr/Dispatcharr"; then
msg_info "Stopping Services"
Expand Down
18 changes: 17 additions & 1 deletion install/dispatcharr-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,25 @@ $STD apt install -y \
procps \
vlc-bin \
vlc-plugin-base \
streamlink
streamlink \
autoconf \
libtool \
libargtable2-dev \
libavformat-dev \
libsdl2-dev \
libswscale-dev
msg_ok "Installed Dependencies"

msg_info "Compiling Comskip"
mkdir -p /opt/Comskip
wget -qO- https://github.com/erikkaashoek/Comskip/archive/refs/heads/master.tar.gz | tar -xz -C /opt/Comskip --strip-components=1
cd /opt/Comskip
$STD ./autogen.sh
$STD ./configure
$STD make
$STD make install
msg_ok "Compiled and Installed Comskip"

setup_uv
NODE_VERSION="24" setup_nodejs
PG_VERSION="16" setup_postgresql
Expand Down