Windows media playlist (wpl) Zune media playlist (zpl)
Convert them using notepad. The only diff between a wpl and a zpl is the headers.
this is at the top of a wpl
<?wpl version="1.0"?>
<smil>
<head>
<meta name="Generator" content="Microsoft Windows Media Player -- 11.0.5721.5145"/>
<meta name="AverageRating" content="53"/>
<meta name="TotalDuration" content="10069"/>
<meta name="ItemCount" content="40"/>
<meta name="ContentPartnerListID"/>
<meta name="ContentPartnerNameType"/>
<meta name="ContentPartnerName"/>
<meta name="Subtitle"/>
<author/>
<title>Hip Hop Massive</title>
</head>
and this is at the top of a zune playlist:
<?zpl version="1.0"?>
<smil>
<head>
<meta name="Generator" content="Zune -- 1.0.5341.0"/>
<author/>
<title>Hip Hop Massive</title>
</head>
paste the zune header into the wpl and it works perfect.