Talk:Phonon

From KDE TechBase
Revision as of 13:40, 4 October 2010 by Tstaerk (talk | contribs) (It goes easier)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

This does not play anything, does not give an error message, and the article does not give a hint how to track this problem down. --Tstaerk 16:26, 2 May 2009 (UTC)

Now it works but I cannot use the mixer --Tstaerk 10:08, 7 June 2009 (UTC)

It goes easier:

int main(int argc, char** argv)
{
   QApplication app(argc, argv);
   QApplication::setApplicationName("Phonon Test");
   QWidget widget;
   Phonon::MediaObject* source = new Phonon::MediaObject(&widget);
   Phonon::AudioOutput* sink = new Phonon::AudioOutput(Phonon::MusicCategory, &widget);
   createPath(source, sink);
   source->setCurrentSource(QString("sample.mp3"));
   source->play();
   widget.show();
   return app.exec();
}