如何播放 amr 音频,QMediaPlayer 不支持?

how to play an amr audio,QMediaPlayer not support?

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 中使用 DirectShow 并且找到的格式支持的格式 here,不幸的是 amr 格式不在列表中。

有关详细信息,您可以阅读 here