(New page: I come here to learn something about phonon, but this page is not helpful at all. Basically it gives a lot of meta-information (the confidency index of this page is 0, what is a confidency...) |
(It goes easier) |
||
| (2 intermediate revisions by one user not shown) | |||
| 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) | |
| + | : 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(); | ||
| + | } | ||
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)
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();
}