aptを使用してDebianにFFmpegをインストールする

aptを使用してDebianにFFmpegをインストールする

Debian Linuxサーバー(Debian GNU / Linux 8(Jessie))があり、FFmpegをインストールしたいと思います。

私は次の手順を実行します。

apt update
apt install ffmpeg

その後、次のエラーが発生します。

Reading package lists... Done
Building dependency tree Reading state information... Done
Package ffmpeg is not available, but is referred to by another package. This may mean that the package is missing, has been obsoleted, or is only available from another source
E: Package 'ffmpeg' has no installation candidate

私は何が間違っていましたか?

答え1

次の行を次の行に追加します/etc/apt/sources.list

deb http://archive.debian.org/debian jessie-backports main

次に、次を実行します。

sudo apt update
sudo apt install -t jessie-backports ffmpeg

答え2

明らかにffmpegはjessieには存在しません。 jessieもoldoldstableバージョンであり、部分的にELTSでサポートされていますが、正式にDebianではサポートされなくなりました。 https://wiki.debian.org/LTS https://wiki.debian.org/LTS/Extended

マルチメディアコンテンツの場合は、少なくとも安定したバージョンにアップデートすることをお勧めします。または、Stretch-oldstableからjessieにffmpegをバックポートしてみてください。

関連情報