From c4a99a3448f694c362172bb762e3bf868484e061 Mon Sep 17 00:00:00 2001 From: schiz0phr3ne <22858496+schiz0phr3ne@users.noreply.github.com> Date: Sun, 5 Jun 2022 15:04:38 +0200 Subject: [PATCH] Update jellyfin-install.sh Adding `ffmpeg` installation, so there is no error message (`This client isn't compatible with the media and the server isn't sending a compatible media format.`) while playing in web browser. Referring to https://jellyfin.org/docs/general/administration/installing.html#ffmpeg-installation, and as we ere not on Debian or DEbian derivative, we can just install `ffmpeg` and not the release built specifically for Jellyfin. Tested, works fine. --- setup/jellyfin-install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/jellyfin-install.sh b/setup/jellyfin-install.sh index 38960670..beabb8a7 100644 --- a/setup/jellyfin-install.sh +++ b/setup/jellyfin-install.sh @@ -64,6 +64,7 @@ apt-get install -y curl &>/dev/null apt-get install -y sudo &>/dev/null apt-get install -y apt-transport-https &>/dev/null apt-get install -y software-properties-common &>/dev/null +apt-get install -y ffmpeg &>/dev/null msg_ok "Installed Dependencies" msg_info "Setting Up Hardware Acceleration"