QMediaPlayer* _player = new QmediaPlayer(this);
QUrl url = QUrl::fromLocalFile("test.amr");
_player->setMedia(url);
_player->play();
_player->errorString()是DirectShowPlayerService::doRender:未解决的错误代码80040266。

我需要将amr转换为mp3,然后使用qmediaplayer播放吗?

最佳答案

QMediaPlayer支持的格式取决于您使用的后端,在Windows中使用DirectShowhere找到的支持格式,但是amr格式不在列表中。

有关更多信息,您可以阅读here

10-08 09:33