zoidy / walkmanmtp

Automatically exported from code.google.com/p/walkmanmtp
0 stars 0 forks source link

Album metadata not being read #23

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Connect a device, start WMTP and select the device (NWZ-A816)
2. All albums in the album tab have no metadata

What is the expected output? What do you see instead?
I should see all albums with their metadata. Instead I only get
"{albumname}{albumartist}.alb" treenodes.

What version of the product are you using? On what operating system?
r28. WinXP Pro SP2

Please provide any additional information below.
Attached MTPAxe dump. Also, iPod nano was connected (not selected as
device) to the pc. Please refer to issue #22.

Original issue reported on code.google.com by pog...@gmail.com on 18 May 2008 at 1:30

Attachments:

GoogleCodeExporter commented 9 years ago
Just updated to r31. Still having this issue but the app now seems to correctly 
read
at least album title and genre - all other infos are not read and are marked as
unknown. Also, a suggestion: in Main.vb, in refreshAlbumsList() on lines 
1121-1126
you don't set the imagelist to be 32-bit you could edit them like this to fully
support png icons' alpha (you currently have 8-bit icons, which is a 
limitation):

If Me.lvAlbumsList.SmallImageList Is Nothing Then
    Dim imglist As New ImageList
    imglist.ColorDepth = ColorDepth.Depth32Bit    ' This is the fix
    imglist.Images.Add("+", My.Resources.Album_entryWithArt)
    imglist.Images.Add("-", My.Resources.Album_entryWithoutArt)
    Me.lvAlbumsList.SmallImageList = imglist
End If

Original comment by pog...@gmail.com on 20 May 2008 at 12:29

GoogleCodeExporter commented 9 years ago
Anything after r22 is a work in progress regarding albums. As of r32, there are 
still
problems creating/deleting albums, especially if WMP11 is installed.  In 
regards to
the album metadata, only albums created by this program will have full metadata 
+
album art. Albums created by WMP11 will have partial metadata + album art

Original comment by rios.fer...@gmail.com on 20 May 2008 at 1:33

GoogleCodeExporter commented 9 years ago
done as of r35

Original comment by rios.fer...@gmail.com on 7 Jun 2008 at 10:26