Talk:Phonon: Difference between revisions
No edit summary |
(It goes easier) |
||
Line 1: | Line 1: | ||
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. --[[User:Tstaerk|Tstaerk]] 16:26, 2 May 2009 (UTC) | 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. --[[User:Tstaerk|Tstaerk]] 16:26, 2 May 2009 (UTC) | ||
: Now it works but I cannot use the mixer --[[User:Tstaerk|Tstaerk]] 10:08, 7 June 2009 (UTC) | : Now it works but I cannot use the mixer --[[User:Tstaerk|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(); | |||
} |
Revision as of 13:40, 4 October 2010
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(); }