mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	* a * acceleration * addition * altogether * api clients * artist * associated * bandwidth * cannot * capabilities * case-insensitive * case-sensitive * configuration * delimiter * dependent * diacritics * directors * enable * explicitly * filters * finish * have * hierarchy * implicit * include * information * into * its * keepalive * localization * macos * manual * matching * metadata * nonexistent * options * overridden * parsed * parser * playback * preferring * processes * processing * provider * ratings * retrieval * running * segments * separate * should * station * subdirectories * superseded * supported * system * than * the * throws * transpose * valid * was link: forum or chat rooms Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
		
			
				
	
	
		
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
## configure the following for a manual install of a specific version from the repo
 | 
						|
 | 
						|
# wget https://repo.jellyfin.org/releases/server/ubuntu/versions/jellyfin-ffmpeg/6.0.1-1/jellyfin-ffmpeg6_6.0.1-1-jammy_amd64.deb -O ffmpeg.deb
 | 
						|
 | 
						|
# sudo apt update
 | 
						|
# sudo apt install -f ./ffmpeg.deb -y
 | 
						|
# rm ffmpeg.deb
 | 
						|
 | 
						|
 | 
						|
## Add the jellyfin repo
 | 
						|
sudo apt install curl gnupg -y
 | 
						|
sudo apt-get install software-properties-common -y
 | 
						|
sudo add-apt-repository universe -y
 | 
						|
 | 
						|
sudo mkdir -p /etc/apt/keyrings
 | 
						|
curl -fsSL https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/jellyfin.gpg
 | 
						|
export VERSION_OS="$( awk -F'=' '/^ID=/{ print $NF }' /etc/os-release )"
 | 
						|
export VERSION_CODENAME="$( awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release )"
 | 
						|
export DPKG_ARCHITECTURE="$( dpkg --print-architecture )"
 | 
						|
cat <<EOF | sudo tee /etc/apt/sources.list.d/jellyfin.sources
 | 
						|
Types: deb
 | 
						|
URIs: https://repo.jellyfin.org/${VERSION_OS}
 | 
						|
Suites: ${VERSION_CODENAME}
 | 
						|
Components: main
 | 
						|
Architectures: ${DPKG_ARCHITECTURE}
 | 
						|
Signed-By: /etc/apt/keyrings/jellyfin.gpg
 | 
						|
EOF
 | 
						|
 | 
						|
sudo apt update -y
 | 
						|
sudo apt install jellyfin-ffmpeg7 -y
 |