我无法在 C# 中使用 WMPLib 获取艺术家和专辑的名称
I cannot get the name of the Artist and of the Album using WMPLib in C#
我正在尝试使用 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")' 有效(return 是标题)。我对他们 return“”(什么都没有)的艺术家和专辑做错了什么?
我解决了!我必须稍等片刻才能从磁盘加载歌曲。专辑和艺术家等信息仅在歌曲加载后可用。
我正在尝试使用 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")' 有效(return 是标题)。我对他们 return“”(什么都没有)的艺术家和专辑做错了什么?
我解决了!我必须稍等片刻才能从磁盘加载歌曲。专辑和艺术家等信息仅在歌曲加载后可用。