Hi,
Thanks for your post. I’m looking into ways to make this easier.
In the case of the feed you link to:
<lfm status="ok">
<lovedtracks user="v1shal" total="14" page="1" perPage="50" totalPages="1">
<track>
<name>Jailer</name>
<mbid/>
<url>www.last.fm/music/Aṣa/_/Jailer</url>
<date uts="1267588331">3 Mar 2010, 03:52</date>
<artist>
<name>Aṣa</name>
<mbid/>
<url>http://www.last.fm/music/Aṣa</url>
</artist>
<image size="small">http://userserve-ak.last.fm/serve/34s/34565463.jpg</image>
<image size="medium">http://userserve-ak.last.fm/serve/64s/34565463.jpg</image>
<image size="large">http://userserve-ak.last.fm/serve/126/34565463.jpg</image>
<image size="extralarge">http://userserve-ak.last.fm/serve/300x300/34565463.jpg</image>
</track>
...
The itempath would be:
/lfm/lovedtracks/track
and you should be able to access elements like this:
name
url
artist/name
artist/url
image (will fetch the first image)
image#2 (the second image element)
image#3
Is that any help?
Andrew