我想使用SFML播放音频,并且正在尝试使用音频模块。
一切似乎正常,但我收到此错误消息:Failed to open sound file music.ogg (format not supported)
这是我当前的代码:
#include <SFML/Audio.hpp>
int main() {
sf::Music music;
if (!music.openFromFile("music.ogg"))
return -1; // error
music.play();
system("pause");
}