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

おすすめ記事