![]() |
Missing FFmpeg in Jellyfin Installation via CasaOS on Ubuntu Server - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Support (https://forum.jellyfin.org/f-support) +--- Forum: Troubleshooting (https://forum.jellyfin.org/f-troubleshooting) +--- Thread: Missing FFmpeg in Jellyfin Installation via CasaOS on Ubuntu Server (/t-missing-ffmpeg-in-jellyfin-installation-via-casaos-on-ubuntu-server) |
Missing FFmpeg in Jellyfin Installation via CasaOS on Ubuntu Server - Jalle914 - 2025-02-09 Hello, Hello, I have installed Jellyfin through CasaOS on my Ubuntu Server (24.04.1 LTS (Noble Numbat)), and it has been working fine. However, while adjusting some settings, I realized that FFmpeg is not installed. When running the following command: Code: /usr/lib/jellyfin-ffmpeg/ffmpeg -version I receive the following response: Code: -bash: /usr/lib/jellyfin-ffmpeg/ffmpeg: No such file or directory I then tried running: Code: apt install jellyfin-ffmpeg but got the following error: Code: E: Unable to locate package jellyfin-ffmpeg What can I do to resolve this? I can always move away from CasaOS, which is my plan when I build my new server, but for now, I would prefer to fix this if possible. Thank you. RE: Missing FFmpeg in Jellyfin Installation via CasaOS on Ubuntu Server - bitmap - 2025-02-09 You can find jellyfin-ffmpeg on Github, including a generic version. You can also add the Jellyfin repo and/or grab a release from there: https://repo.jellyfin.org/?path=/ffmpeg. RE: Missing FFmpeg in Jellyfin Installation via CasaOS on Ubuntu Server - Jalle914 - 2025-02-09 (2025-02-09, 09:28 PM)bitmap Wrote: You can find jellyfin-ffmpeg on Github, including a generic version. You can also add the Jellyfin repo and/or grab a release from there: https://repo.jellyfin.org/?path=/ffmpeg. Thank you for this. I tried installing a generic version without success but I will try again. What would be the easiet option, if you don't mind me asking. I'm pretty new to Linux. edit: Also, as I'm running 24.04, which ffmpeg version should I use? Or should I go with the generic Linux version? RE: Missing FFmpeg in Jellyfin Installation via CasaOS on Ubuntu Server - TheDreadPirate - 2025-02-10 If you are using CasaOS, that means you are running Jellyfin in Docker, correct? jellyfin-ffmpeg would only exist within the container and wouldn't be accessible from Ubuntu directly. And jellyfin-ffmpeg is included with the Docker image. And since you are using Docker that also means that you didn't add the jellyfin repo (not required for Docker installs). So trying to install jellyfin-ffmpeg via apt would not work since our packages are not included in Ubuntu's repos. Only our own. But, again, jellyfin-ffmpeg is already part of the Docker container. You can test this with a docker command. Code: docker exec -it jellyfin /usr/lib/jellyfin-ffmpeg/ffmpeg -version Code: chris@rat-trap:~$ docker exec -it jellyfin /usr/lib/jellyfin-ffmpeg/ffmpeg -version RE: Missing FFmpeg in Jellyfin Installation via CasaOS on Ubuntu Server - Jalle914 - 2025-02-10 (Yesterday, 02:00 PM)TheDreadPirate Wrote: If you are using CasaOS, that means you are running Jellyfin in Docker, correct? jellyfin-ffmpeg would only exist within the container and wouldn't be accessible from Ubuntu directly. And jellyfin-ffmpeg is included with the Docker image. Thank you for this. Thing is, I never had the usr/lib/jellyfin-ffmpeg/ffmpeg directory in the first place. It was never installed or I did something during the setup. Do you know how that could of happened? I manually installed it through your Github, gave permission to the docker to see and use my Nvidia GPU and now it's working as intended (atleast what I can see). My next install won't be through casaOS. But I'm glad I fixed it in the mean time. RE: Missing FFmpeg in Jellyfin Installation via CasaOS on Ubuntu Server - TheDreadPirate - 2025-02-10 Can you clarify how CasaOS is running Jellyfin? As an "app"? Or through Docker? If Docker, which image are they using. Unless you are using some off brand Jellyfin image, jellyfin-ffmpeg should have been part of the Docker image. Or does the CasaOS "Jellyfin app" that doesn't include ffmpeg? Assuming this is an "app" and not docker. |