演奏中のアルバム情報の取得です。
演奏中のアルバム情報の取得です。 AxWindowsMediaPlayer1.currentMedia.getItemInfoの例です。
よくわかりませんが「アーティスト名」は"Author"でも"Artist"でも取得できるみたいです。

演奏中の情報ですので下記のイベントハンドラの中で取得しましょう。

'演奏状態の変化のイベントハンドラー
Private Sub AxWindowsMediaPlayer1_PlayStateChange(sender As Object, e As AxWMPLib. _
_WMPOCXEvents_PlayStateChangeEvent) Handles AxWindowsMediaPlayer1.PlayStateChange

If e.newState = 3 Then
Console.WriteLine(AxWindowsMediaPlayer1.currentMedia.getItemInfo("Author"))
End If
End Sub





アーティスト名
AxWindowsMediaPlayer1.currentMedia.getItemInfo("Author")

アーティスト名
AxWindowsMediaPlayer1.currentMedia.getItemInfo("Artist")

タイトル
AxWindowsMediaPlayer1.currentMedia.getItemInfo("Title")

ジャンル
AxWindowsMediaPlayer1.currentMedia.getItemInfo("Genre")

AlbumIDはよくわかりません。
AxWindowsMediaPlayer1.currentMedia.getItemInfo("AlbumID")





アルバム情報は沢山ありますし、簡単に取得できないものがあったり、英語なので使い方はわかりませんが一応、一覧を掲載します。 利用できる方は参考にしてください。

With AxWindowsMediaPlayer1.currentMedia
  .getItemInfo("AcquisitionTime")
  .getItemInfo("AlbumID")
  .getItemInfo("AlbumIDAlbumArtist")
  .getItemInfo("Author")
  .getItemInfo("AverageLevel")
  .getItemInfo("Bitrate")
  .getItemInfo("BuyNow")
  .getItemInfo("BuyTickets")
  .getItemInfo("Copyright")
  .getItemInfo("CurrentBitrate")
  .getItemInfo("Duration")
  .getItemInfo("FileSize")
 .getItemInfo("FileType")
  .getItemInfo("Is_Protected")
  .getItemInfo("IsVBR")
  .getItemInfo("MediaType")
  .getItemInfo("MoreInfo")
  .getItemInfo("PeakValue")
  .getItemInfo("ProviderLogoURL")
  .getItemInfo("ProviderURL")
  .getItemInfo("RecordingTime")
  .getItemInfo("Writer")
 .getItemInfo("RequestState")
 .getItemInfo("SourceURL")
  .getItemInfo("SyncState")
  .getItemInfo("Title")
  .getItemInfo("TrackingID")
  .getItemInfo("UserCustom1")
 .getItemInfo("UserCustom2")
  .getItemInfo("UserEffectiveRating")
 .getItemInfo("UserLastPlayedTime")
 .getItemInfo("UserPlayCount")
 .getItemInfo("UserPlaycountAfternoon")
  .getItemInfo("UserPlaycountEvening")
  .getItemInfo("UserPlaycountMorning")
  .getItemInfo("UserPlaycountNight")
  .getItemInfo("UserPlaycountWeekday")
  .getItemInfo("UserPlaycountWeekend")
  .getItemInfo("UserRating")
  .getItemInfo("UserServiceRating")
  .getItemInfo("WM/AlbumArtist")
 .getItemInfo("WM/AlbumTitle")
  .getItemInfo("WM/Category")
  .getItemInfo("WM/Composer")
  .getItemInfo("WM/Conductor")
  .getItemInfo("WM/ContentDistributor")
 .getItemInfo("WM/ContentGroupDescription")
  .getItemInfo("WM/Writer")
  .getItemInfo("WM/Genre")
  .getItemInfo("WM/GenreID")
  .getItemInfo("WM/InitialKey")
  .getItemInfo("WM/Language")
  .getItemInfo("WM/Lyrics")
  .getItemInfo("WM/MCDI")
  .getItemInfo("WM/MediaClassPrimaryID")
  .getItemInfo("WM/MediaClassSecondaryID")
  .getItemInfo("WM/Mood")
 .getItemInfo("WM/ParentalRating")
  .getItemInfo("WM/Period")
  .getItemInfo("WM/ProtectionType")
  .getItemInfo("WM/Provider")
  .getItemInfo("WM/ProviderRating")
 .getItemInfo("WM/ProviderStyle")
 .getItemInfo("WM/Publisher")
  .getItemInfo("WM/SubscriptionContentID")
  .getItemInfo("WM/SubTitle")
  .getItemInfo("WM/TrackNumber")
  .getItemInfo("WM/UniqueFileIdentifier")
  .getItemInfo("WM/WMCollectionGroupID")
  .getItemInfo("WM/WMCollectionID")
  .getItemInfo("WM/WMContentID")
 .getItemInfo("WM/Writer")
  .getItemInfo("WM/Year")
End With