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.
This commit is contained in:
schiz0phr3ne 2022-06-05 15:04:38 +02:00 committed by GitHub
parent eb7207325b
commit c4a99a3448
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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"