ffmpeg (stretch) (cubox-i)
|
4th Nov, 2017, 07:10 AM
Post: #1
|
|||
|
|||
ffmpeg (stretch) (cubox-i)
When attempting to run ffmpeg, I get the following error:
Terminal ffmpeg -v ffmpeg: error while loading shared libraries: libwayland-egl.so.1: cannot open shared object file: No such file or directory I assume this is related to Unable to install libav-tools, ffmpeg etc. on Stretch, but that one doesn't apply to the cubox-i. How would one go about addressing this, since this platform does not appear to use xbian-package-firmware? |
|||
4th Nov, 2017, 10:11 AM
Post: #2
|
|||
|
|||
RE: ffmpeg (stretch) (cubox-i)
(4th Nov, 2017 07:10 AM)tempest Wrote: When attempting to run ffmpeg, I get the following error: That's right, its the firmware-imx package, which has the same wrong dependencies. Unfortunately I haven't had time to fix this Will see if I can do this next days |
|||
5th Nov, 2017, 03:23 AM
Post: #3
|
|||
|
|||
RE: ffmpeg (stretch) (cubox-i)
@tempest
Build a (quick and dirty ) firmware today, which allows proper installation of ffmpeg and all subpackages Please download this firmware package, install this package with sudo dpkg -i and after that, you have to run sudo apt-get install -f to repair missing dependencies Terminal root@kmxbimx ~ # cd /tmp root@kmxbimx /tmp # wget http://apt.xbian.org/pool/devel/imx6-stretch/f/firmware-imx/firmware-imx_2.1.3-1509814165_armhf.deb --2017-11-04 18:13:21-- http://apt.xbian.org/pool/devel/imx6-stretch/f/firmware-imx/firmware-imx_2.1.3-1509814165_armhf.deb Auflösen des Hostnamens »apt.xbian.org (apt.xbian.org)« … 85.17.60.99 Verbindungsaufbau zu apt.xbian.org (apt.xbian.org)|85.17.60.99|:80 … verbunden. HTTP-Anforderung gesendet, auf Antwort wird gewartet … 200 OK Länge: 12738066 (12M) [application/x-debian-package] Wird in »»firmware-imx_2.1.3-1509814165_armhf.deb«« gespeichert. firmware-imx_2.1.3-1509814165_armhf.deb 100%[========================================================================================>] 12,15M 9,58MB/s in 1,3s 2017-11-04 18:13:22 (9,58 MB/s) - »»firmware-imx_2.1.3-1509814165_armhf.deb«« gespeichert [12738066/12738066] root@kmxbimx /tmp # sudo dpkg -i firmware-imx_2.1.3-1509814165_armhf.deb (Lese Datenbank ... 48707 Dateien und Verzeichnisse sind derzeit installiert.) Vorbereitung zum Entpacken von firmware-imx_2.1.3-1509814165_armhf.deb ... Entpacken von firmware-imx (2.1.3-1509814165) über (2.1.3-1509814165) ... firmware-imx (2.1.3-1509814165) wird eingerichtet ... root@kmxbimx /tmp # sudo apt-get install -f Paketlisten werden gelesen... Fertig Abhängigkeitsbaum wird aufgebaut. Statusinformationen werden eingelesen.... Fertig Die folgenden Pakete wurden automatisch installiert und werden nicht mehr benötigt: libtag1v5 libtag1v5-vanilla libtinyxml2.6.2v5 Verwenden Sie »apt autoremove«, um sie zu entfernen. 0 aktualisiert, 0 neu installiert, 0 zu entfernen und 19 nicht aktualisiert. root@kmxbimx /tmp # ffmpeg starts up without any issues, and Kodi still doesn't complain anything |
|||
5th Nov, 2017, 04:28 AM
Post: #4
|
|||
|
|||
RE: ffmpeg (stretch) (cubox-i)
(5th Nov, 2017 03:23 AM)Nachteule Wrote: ffmpeg starts up without any issues, and Kodi still doesn't complain anything Woah, thanks! I found that at first I got the error: Terminal # ffmpeg -v ffmpeg: error while loading shared libraries: libXdamage.so.1: cannot open shared object file: No such file or directory Terminal apt-get install libxdamage1 edit: It is entirely possible that I have done something with my system to cause this, so it may not reflect the current xbian image. I am happy to verify this if needed. |
|||
5th Nov, 2017, 05:53 AM
Post: #5
|
|||
|
|||
RE: ffmpeg (stretch) (cubox-i)
(5th Nov, 2017 04:28 AM)tempest Wrote:(5th Nov, 2017 03:23 AM)Nachteule Wrote: ffmpeg starts up without any issues, and Kodi still doesn't complain anything Maybe you have removed this missing lib manually. On my system this lib was already there, so there were no need for reinstalling it did you run sudo apt-get install -f ? |
|||
5th Nov, 2017, 06:00 AM
Post: #6
|
|||
|
|||
RE: ffmpeg (stretch) (cubox-i)
(5th Nov, 2017 05:53 AM)Nachteule Wrote:I did indeed. It installed quite a few things without complaint. It is possible it was autoremoved yesterday, but I never uninstalled it manually.(5th Nov, 2017 04:28 AM)tempest Wrote:(5th Nov, 2017 03:23 AM)Nachteule Wrote: ffmpeg starts up without any issues, and Kodi still doesn't complain anything |
|||
5th Nov, 2017, 11:13 PM
Post: #7
|
|||
|
|||
RE: ffmpeg (stretch) (cubox-i)
(5th Nov, 2017 06:00 AM)tempest Wrote:(5th Nov, 2017 05:53 AM)Nachteule Wrote:I did indeed. It installed quite a few things without complaint. It is possible it was autoremoved yesterday, but I never uninstalled it manually.(5th Nov, 2017 04:28 AM)tempest Wrote:(5th Nov, 2017 03:23 AM)Nachteule Wrote: ffmpeg starts up without any issues, and Kodi still doesn't complain anything Could be, but in that case apt-get install -f should reinstall this package automatically (if dependencies of all installed packages are correct) |
|||
6th Nov, 2017, 01:16 AM
Post: #8
|
|||
|
|||
RE: ffmpeg (stretch) (cubox-i)
(5th Nov, 2017 11:13 PM)Nachteule Wrote: Could be, but in that case apt-get install -f should reinstall this package automatically (if dependencies of all installed packages are correct) Okay, I installed firmware-imx, did an apt-get -f install, and installed ffmpeg on a *completely* virgin and up to date install. I still get the libXdamage error. Code: dpkg -l | grep firmware |
|||
6th Nov, 2017, 02:26 AM
(This post was last modified: 6th Nov, 2017 02:26 AM by Nachteule.)
Post: #9
|
|||
|
|||
RE: ffmpeg (stretch) (cubox-i)
That's weird
I have that lib (libxdamage1) installed, but having absolutely no idea where it came from ??? Maybe it was installed before I was upgrading from Jessie to Stretch Edit: Ah, found where it came from: xbian-package-xbmc had a hard-coded dependency to libxdamage1 (see this commit) which was removed some months ago because it was not required by Kodi Seems that the automatic dependency generator still does not find all required packages |
|||
« Next Oldest | Next Newest »
|
Possibly Related Threads... | |||||
Thread: | Author | Replies | Views: | Last Post | |
[SOLVED] Unable to install libav-tools, ffmpeg etc. on Stretch | Gyuunduh | 10 | 35,190 |
11th Feb, 2022 01:51 AM Last Post: richardbell |
|
[SOLVED] build-essential on stretch (cubox-i) | tempest | 5 | 15,236 |
5th Nov, 2017 01:56 AM Last Post: Nachteule |