web-dev-qa-db-fra.com

Installer les plugins 32 bits de gstreamer sur 64 bits

J'essaie d'installer les plugins 32 bits de gstreamer sur mon système 64 bits (basé sur Ubuntu 12.10). Je peux installer les packages gstreamer0.10-plugins-base: i386 et gstreamer0.10-plugins-good: i386. Cependant, gstreamer0.10-plugins-bad: i386, gstreamer0.10-plugins-bad-multiverse: i386 et gstreamer0.10-plugins-ugly: le conflit entre i386 et des paquets 64 bits déjà installés sur mon système:

$ Sudo apt-get install gstreamer0.10-plugins-bad:i386
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:
 gstreamer0.10-plugins-bad:i386 : Depends: libass4:i386 (>= 0.9.7) but it is not going to be installed
                                  Depends: libdca0:i386 but it is not going to be installed
                                  Depends: libdvdnav4:i386 (>= 4.2.0+20120524) but it is not going to be installed
                                  Depends: libdvdread4:i386 but it is not going to be installed
                                  Depends: libslv2-9:i386 (>= 0.6.4-1~) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

...

$ Sudo apt-get install gstreamer0.10-plugins-bad-multiverse:i386
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  libavcodec53:i386 libavutil51:i386 libfaac0:i386 libfaad2:i386 libgsm1:i386
  libmjpegtools-1.9:i386 libmp3lame0:i386 libquicktime2:i386
  libschroedinger-1.0-0:i386 libswscale2:i386 libva1:i386 libvpx1:i386
  libx264-123:i386 libxvidcore4:i386
The following packages will be REMOVED:
  gstreamer0.10-plugins-bad-multiverse libfaac0 libmjpegtools-1.9
  mint-meta-codecs
The following NEW packages will be installed:
  gstreamer0.10-plugins-bad-multiverse:i386 libavcodec53:i386 libavutil51:i386
  libfaac0:i386 libfaad2:i386 libgsm1:i386 libmjpegtools-1.9:i386
  libmp3lame0:i386 libquicktime2:i386 libschroedinger-1.0-0:i386
  libswscale2:i386 libva1:i386 libvpx1:i386 libx264-123:i386 libxvidcore4:i386
0 upgraded, 15 newly installed, 4 to remove and 5 not upgraded.
Need to get 9,198 kB of archives.
After this operation, 23.3 MB of additional disk space will be used.
Do you want to continue [Y/n]?

...

$ Sudo apt-get install gstreamer0.10-plugins-ugly:i386
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:
 gstreamer0.10-plugins-ugly:i386 : Depends: libdvdread4:i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Cela signifie que je ne peux pas lire de MP3 (entre autres choses) dans les applications 32 bits qui utilisent gstreamer. Y a-t-il un moyen de contourner ceci?

2
Rua

Les bibliothèques que apt refuse de s'installer (telles que libdvdread4) n'ont pas encore été multi-archées. Donc, ils ne peuvent pas avoir les versions AMD64 et i386 de la même bibliothèque co-installées.

Vous ne pouvez pas faire grand chose, sauf nous aider à disposer de plusieurs bibliothèques supplémentaires.

1
tumbleweed