FFMPEG ERRORS

ravim

New member
Joined
Jan 17, 2020
Messages
4
root@server2:/# apt-get update && apt-get install ffmpeg && ffmpeg -i
Ign:1 http://debian.mirror1.us.xxxx.net/debian stretch InRelease
Hit:2 http://debian.mirror1.us.xxxx.net/debian stretch Release
Hit:3 http://security.debian.org/debian-security stretch/updates InRelease
Hit:5 http://www.deb-multimedia.org jessie InRelease
Hit:6 http://www.deb-multimedia.org jessie-backports InRelease
Reading package lists... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
ffmpeg : Depends: libavcodec56 (>= 10:2.6.9) but it is not going to be installed
Depends: libavdevice56 (>= 10:2.6.9) but it is not going to be installed
Depends: libavfilter5 (>= 10:2.6.9) but it is not going to be installed
Depends: libavformat56 (>= 10:2.6.9) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
root@server2:/#


1. I completely delete the ffmpeg and reinstall everything.

2. Upgrade it as requirements.

Help and suggestions required..

thanks
 
You also are mixing repos

Ign:1 http://debian.mirror1.us.xxxx.net/debian stretch InRelease
Hit:2 http://debian.mirror1.us.xxxx.net/debian stretch Release
Hit:3 http://security.debian.org/debian-security stretch/updates InRelease
Hit:5 http://www.deb-multimedia.org jessie InRelease
Hit:6 http://www.deb-multimedia.org jessie-backports InRelease

For whatever you are doing you would want the to say stretch not jesse.

once you fix that try again.

Might try upgrading everything as well.

Code:
apt-get update
apt-get upgrade
 
root@server2:/home/admin# cat /etc/apt/sources.list

deb http://deb.debian.org/debian stretch main
deb-src http://deb.debian.org/debian stretch main

deb http://deb.debian.org/debian stretch-updates main
deb-src http://deb.debian.org/debian stretch-updates main

deb http://security.debian.org/debian-security/ stretch/updates main
deb-src http://security.debian.org/debian-security/ stretch/updates main
root@server2:/home/admin#

Do I need to fix here anything?? and what is yours /etc/apt/sources.list


Also I tried -

root@server2:# apt-get update
Hit:1 http://security.debian.org/debian-security stretch/updates InRelease
Ign:2 http://deb.debian.org/debian stretch InRelease
Hit:3 http://deb.debian.org/debian stretch-updates InRelease
Hit:4 http://deb.debian.org/debian stretch Release
Hit:6 http://www.deb-multimedia.org jessie InRelease
Hit:7 http://www.deb-multimedia.org jessie-backports InRelease
Reading package lists... Done
root@server2:#

and

root@server2:# apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
Calculating upgrade... Done
The following packages have been kept back:
librtmp1
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
root@server2:#
 
Back
Top