我无法在C#中使用WMPLib获取艺术家和专辑的名称

时间:2015-07-12 14:03:42

标签: c# wmp wmplib

我正在尝试使用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”)'有效(它返回标题)。我对艺术家和专辑做错了什么,他们返回“”(没有)?

1 个答案:

答案 0 :(得分:1)

我解决了!我必须等一下才能从磁盘加载歌曲。只有在加载歌曲后才能使用“专辑”和“艺术家”等信息。

这很有用:https://social.msdn.microsoft.com/Forums/en-US/7718f71a-1296-4168-9b12-36d063993b0d/getting-an-track-length-with-windows-media-player?forum=Vsexpressvcs