I needed to play short sound (1-3 sec) from url
I used QSoundEffect
QSoundEffect* player = new QSoundEffect;
player->setSource(QUrl("http://translate.google.ru/translate_tts?ie=UTF-8&tl=en&prev=input&q=" + word));
player->setVolume(1.0f);
player->play();
File loaded correctly, but was not played and i got QSoundEffect(qaudio): Error decoding source
I used so QMediaPlayer. There is no loading was performed and was wrote “no service found for org.qt-project.qt.mediaplayer”
↧