<?xml version="1.0"?>

<xsl:stylesheet version="1.0"
	exclude-result-prefixes="xspf"
	xmlns:xspf="http://xspf.org/ns/0/"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:output
	encoding="iso-8859-1"
	method="text"
	omit-xml-declaration="yes"
	media-type="text/plain"/>

<xsl:template match="xspf:playlist">
 <xsl:text>#EXTM3U&#10;</xsl:text>
 <xsl:apply-templates select="xspf:trackList"/>
</xsl:template>

<xsl:template match="xspf:trackList">
 <xsl:apply-templates select="xspf:track"/>
</xsl:template>

<xsl:template match="xspf:track">
 <xsl:text>#EXTINF:-1,</xsl:text><xsl:value-of select="xspf:title"/>
 <xsl:text>&#10;</xsl:text>
 <xsl:value-of select="xspf:location"/>
 <xsl:text>&#10;</xsl:text>
</xsl:template>

<xsl:template match="*"/>

</xsl:stylesheet>
