Qt MediaPlayer не воспроизводит звук [закрыто] ⇐ C++
Qt MediaPlayer не воспроизводит звук [закрыто]
I am trying to make an application where there is a looping background music. I have added the bgm m4a file into the project via CMake. The code in MainWindow is below.
ui->setupUi(this); screamer = new QMediaPlayer(this); audioOutput = new QAudioOutput(this); screamer->setAudioOutput(audioOutput); QString filePath = "bgm.m4a"; qDebug() setSource(QUrl::fromLocalFile(filePath)); audioOutput->setVolume(40); screamer->play(); qDebug() errorString(); Now I am quite sure that the bgm.m4a file was correctly named, the errorString() returns "", and all the codes are executed in the correct order, but there is no sound coming out of my speakers. What am I doing wrong here?
Источник: https://stackoverflow.com/questions/780 ... play-audio
I am trying to make an application where there is a looping background music. I have added the bgm m4a file into the project via CMake. The code in MainWindow is below.
ui->setupUi(this); screamer = new QMediaPlayer(this); audioOutput = new QAudioOutput(this); screamer->setAudioOutput(audioOutput); QString filePath = "bgm.m4a"; qDebug() setSource(QUrl::fromLocalFile(filePath)); audioOutput->setVolume(40); screamer->play(); qDebug() errorString(); Now I am quite sure that the bgm.m4a file was correctly named, the errorString() returns "", and all the codes are executed in the correct order, but there is no sound coming out of my speakers. What am I doing wrong here?
Источник: https://stackoverflow.com/questions/780 ... play-audio
-
- Похожие темы
- Ответы
- Просмотры
- Последнее сообщение
-
-
Как я могу зациклить звук на Android с помощью android.media.MediaPlayer?
Anonymous » » в форуме Android - 0 Ответы
- 31 Просмотры
-
Последнее сообщение Anonymous
-
-
-
Как я могу зациклить звук на Android с помощью android.media.MediaPlayer?
Anonymous » » в форуме Android - 0 Ответы
- 18 Просмотры
-
Последнее сообщение Anonymous
-
-
-
Как запретить VideoView/MediaPlayer останавливать звук других приложений?
Anonymous » » в форуме Android - 0 Ответы
- 13 Просмотры
-
Последнее сообщение Anonymous
-
-
-
Как запретить VideoView/MediaPlayer останавливать звук других приложений?
Anonymous » » в форуме Android - 0 Ответы
- 18 Просмотры
-
Последнее сообщение Anonymous
-