Playing songs with Phonon
General and Desktop
1
Posts
1
Posters
819
Views
1
Watching
-
I'm trying to learn how to use Phonon to play music. I have this code:
[CODE]
sources.append(MediaSource("D:/Music/Lindsey Stirling/16. Lindsey Stirling - Crystallize.mp3"));
sources.append(MediaSource("D:/Music/Lindsey Stirling/11. Lindsey Stirling - Song of the Caged Bird.mp3"));createPath(mediaObject, audioOutput); currentSource = 0; mo->setCurrentSource(sources.at(currentSource));
[/CODE]
Then I have a next button which increments currentSource and calls mediaObject.play(); For some reason though, only one of the songs plays. Both files exists for sure but one just won't play. Any ideas on whats wrong or how to track it down? Thanks a lot.