I've installed GStreamer plugins for Fedora 14 using yum. However, when running a qt-phonon application with the GStreamer backend, I get the error
"Warning: You do not seem to have the base GStreamer plugins installed. All audio and video support has been disabled"
Is there a good baseline test to determine if this is a Phonon problem? Does anybody know where yum installs the GStreamer plugins and how GStreamer resolves plugins?
gst-inspectmaybe? Should let you know which plugins are installs. – derobert Oct 1 '12 at 21:42gst-inspect-0.10 -a | grep gst-plugins-baseto list the base plugins installed on your system. I'm not familiar withyumbutrpm -ql nameofpackageshould list all files in that package (with their full path) provided you know the exact name of the gstreamer-base-plugins package. Ifgstreamer-baseplugins are present on your system then it is a Phonon problem and you'll have to find out why it doesn't detect them. – don_crissti Oct 1 '12 at 21:51