I have Qt Creator 9.0.2 and I want to add background music to my little project (game).
I've added QT += multimedia
I tried following:
QMediaPlayer* background_music = new QMediaPlayer();
background_music->setMedia(QUrl(..) // there is no setMedia() member function
Then I tried
background_music->setSource(QUrl("qrc:/sounds/sound.mp3"));
background_music->play()
//after a few tries it ran but no music was heard
I don't know what to do Please help.