我可以将WAV
个文件加载为SoundEffect
并播放它们,但任何其他格式,例如MP3
,WMA
,OGG
失败,但有以下异常;
Exception thrown: 'SharpDX.SharpDXException' in SharpDX.dll
An unhandled exception of type 'SharpDX.SharpDXException' occurred in SharpDX.dll
HRESULT: [0xC00D36C4], Module: [Unknown], ApiCode: [Unknown/Unknown], Message: The byte stream type of the given URL is unsupported.
我是Visual Studio
和Monogame
\ XNA
的新用户,无法在网络上找到任何信息。
我使用MonoGame Pipeline
添加内容中的文件。
代码非常简单;
protected override void LoadContent() {
song = Content.Load<Song>("test");
MediaPlayer.Play(song);
}
该项目是一个跨平台的桌面项目,并使用Monogame
我尝试使用Song.FromURI()
,但仍然给了我完全相同的例外......