mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-24 01:34:45 +03:00
5 lines
205 B
Bash
5 lines
205 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
sudo wget https://repo.jellyfin.org/releases/server/ubuntu/versions/jellyfin-ffmpeg/6.0-8/jellyfin-ffmpeg6_6.0-8-focal_amd64.deb -O ffmpeg.deb
|
||
|
|
sudo apt install -f ./ffmpeg.deb -y
|
||
|
|
rm ffmpeg.deb
|