Hi,
I'm running openSUSE 11 with Qt 4.4.1
Qt Code:
  1. > rpm -qa|grep qt4
  2. libqt4-sql-4.4.1-25.1
  3. libqt4-devel-doc-4.4.1-27.1
  4. libqt4-sql-sqlite-4.4.1-25.1
  5. libqt4-x11-4.4.1-25.1
  6. libqt4-4.4.1-25.1
  7. libqt4-devel-doc-data-4.4.1-27.1
  8. libqt4-devel-4.4.1-25.1
  9. libqt4-qt3support-4.4.1-25.1
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. > rpm -qa|grep gstreamer -i
  2. libgstreamer-0_10-0.10.20-42.pm.1
  3. gstreamer-0_10-0.10.20-42.pm.1
  4. gstreamer-0_10-lang-0.10.20-42.pm.1
  5. gstreamer-0_10-utils-0.10.20-42.pm.1
  6. gstreamer-utils-0.10.20-42.pm.1
  7. phonon-backend-gstreamer-0_10-4.2.0-9.11
  8. gstreamer-0_10-plugins-good-0.10.8-42.pm.1
  9. gstreamer-0_10-plugins-base-lang-0.10.20-42.pm.1
  10. gstreamer-0_10-ffmpeg-0.10.5-42.pm.1
  11. gstreamer-0_10-plugins-base-0.10.20-42.pm.1
To copy to clipboard, switch view to plain text mode 
Qt Code:
  1. > rpm -qa|grep -i phonon
  2. libphonon4-4.2.0-9.11
  3. phonon-backend-gstreamer-0_10-4.2.0-9.11
  4. phonon-devel-4.2.0-9.11
  5. phonon-4.2.0-9.11
To copy to clipboard, switch view to plain text mode 
I played around a little with Phonon - or at least I tried to.
I compiled the capabilities example and it runs fine. It lists all my sound devices and a long list of supported MIME types.
After that I compiled the music player example. Again it compiles and runs. But when I try to add a file, the dialog pops up, I select a file, press OK, and nothing happens I added some debugging code but found no error, just the signal stateChanged (...) connected in constructor
Qt Code:
  1. connect(metaInformationResolver, SIGNAL(stateChanged(Phonon::State,Phonon::State)),
  2. this, SLOT(metaStateChanged(Phonon::State, Phonon::State)));
To copy to clipboard, switch view to plain text mode 

never fires, the state of metaInformationResolver is 0 (Phonon::LoadingState).

I tried various file types, ogg, mp3, wav, ac3, always the same result.
I can play all these files with xmms or MPlayer, so no problem on this side.

Any suggestions?

Ginsengelf