Hola, estot intentando acceder a la propiedad de media:thumbnail del rss de youtube
http://gdata.youtube.com/feeds/api/v...wCount&alt=rss
Lo realizo con un xsl
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" />
<xsl:template match="/">
<xsl:for-each select="rss/channel/item">
<a href="{link}"><strong><xsl:value-of select="title" /></strong></a><br/>
eeee<br/>
yea
<xsl:value-of select="media/thumbnail/title" />
<xsl:value-of disable-output-escaping="yes" select="url" /><br/><br/>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>
Alguien tiene idea de como poder acceder aqui:
<media:thumbnail url='http://img.youtube.com/vi/5FRGIAYmwqI/2.jpg' (Es del rss)
Gracias.