- Thread starter
- #461
egonspengleruk said:Hi Steve,
For some reason I cant get at that MusicTag
In the below (from MyBurner) I can read out the playlistitem.FileName quite happily but MusicTag is always NULL.
Code:PlayList burnlist; burnlist = PlayListPlayer.SingletonPlayer.GetPlaylist(PlayListType.PLAYLIST_MUSIC); Debugger.Launch(); Debugger.Break(); foreach (PlayListItem playlistitem in burnlist) { GUIListItem pItem = new GUIListItem(); pItem.Path = Path.GetDirectoryName(playlistitem.FileName); pItem.Label = Path.GetFileName(playlistitem.FileName); pItem.MusicTag = playlistitem.MusicTag; GUIControl.AddListItemControl(GetID, (int)Controls.CONTROL_LIST_FILES_TO_BURN, pItem); }
Any ideas??
Egon
Hi Egon,
How is the playlist being created--by adding tracks via the My Music GUI or are you creating it manually? If from the My Music GUI; which view--share or database? And does the "Now playing screen show the correct info?
Steve