我正在尝试使用 WMPLib 在 C# 中制作音乐播放器。这是我所拥有的:
WMPLib.WindowsMediaPlayer song = new WMPLib.WindowsMediaPlayer();
song.URL = file; //the path to a mp3 file
song.controls.stop();
Console.WriteLine(song.currentMedia.getItemInfo("Title"));
Console.WriteLine(song.currentMedia.getItemInfo("Artist"));
Console.WriteLine(song.currentMedia.getItemInfo("Album"));
只有 'song.currentMedia.getItemInfo("Title")' 有效(它返回标题)。我对他们返回“”(什么都没有)的艺术家和专辑做错了什么?