I wrote a video player with Qt and when I tried to run it, this error occurred,
Error: "Your GStreamer installation is missing a plug-in"
This issue can be fixed by running the following command,
sudo apt-get install gstreamer0.10-ffmpeg
My question is, what happened after the installation? What things are installed in my computer? I'd like to find this missing plug-in so I can package it into my .deb. I think it must be a .so file, but I just don't know which one.
Can anyone help me? Thanks.
apt-get
(or a front-end to it) to install your package, declaringgstreamer0.10-ffmpeg
as a dependency will automatically install it when your package is installed. – MoonSweep Mar 13 '15 at 16:23sudo dpkg --install --force-depends <package>
but I wouldn't recommend it (and it needs the downloaded package, unlikeapt-get
). Plus, installation may abort with an error if some package needed as Pre-Depends is used in the preinst script, a situation that the Debian Policy discourages ("It is best to avoid this situation if possible"). – MoonSweep Mar 19 '15 at 00:45