Playlist :-(

Mitsubishi Outlander PHEV Forum

Help Support Mitsubishi Outlander PHEV Forum:

This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.
Finallt found out the problems/limitations of the MMCS with WPL playlists:

1) The WPL files must be saved in UTF-8 encoding (else national characters mess up things)
2) The character "&" must be replaced with "&"
3) Filname must be 80 chars or shorter (this is a MMCS limitation, works other places)

Now that it works I love it. Can add many albums to a playlist and random sort it when playing. Great!
 
LarsErikOsterud said:
Finallt found out the problems/limitations of the MMCS with WPL playlists:

1) The WPL files must be saved in UTF-8 encoding (else national characters mess up things)
2) The character "&" must be replaced with "&"
3) Filname must be 80 chars or shorter (this is a MMCS limitation, works other places)

Now that it works I love it. Can add many albums to a playlist and random sort it when playing. Great!

Thanks for that. I spent ages trying to make .wpl playlists.
What program did you use to create the playlists.
 
vs2 said:
Thanks for that. I spent ages trying to make .wpl playlists.
What program did you use to create the playlists.

I did like this:

1) Created a normal m3u playlist (I used Winamp)
2) Used the M3U to WPL connterer found at http://proletsoft.freeservers.com/mmb/m3utoasx.html
3) Replaced "&" with "&" and saved in UTF-8 (used Notepad2)
4) Removed the absolute file-path start (like D:\Music). Needs to be relative to the root

Here is an example of a playlist:

Code:
<?wpl version="1.0" encoding="utf-8"?>
<smil><head><title>Heavy rock</title></head><body><seq>
<media src="Billy Idol\01 Rebel Yell.mp3"/>
<media src="Billy Idol\02 Hot In the City.mp3"/>
<media src="Billy Idol\03 White Wedding.mp3"/>
<media src="Billy Idol\04 Eyes Without a Face.mp3"/>
<media src="Billy Idol\05 Catch My Fall.mp3"/>
<media src="Billy Idol\06 Mony Mony.mp3"/>
<media src="Billy Idol\07 To Be a Lover.mp3"/>
<media src="Billy Idol\08 Sweet Sixteen.mp3"/>
<media src="Billy Idol\09 Flesh for Fantasy.mp3"/>
<media src="Billy Idol\10 Don't Need a Gun.mp3"/>
<media src="Billy Idol\11 Dancing with Myself.mp3"/>
<media src="Gary Moore\01 Friday On My Mind.mp3"/>
<media src="Gary Moore\02 Wild Frontier.mp3"/>
<media src="Gary Moore\03 Take A Little Time.mp3"/>
<media src="Gary Moore\04 The Loner.mp3"/>
<media src="Gary Moore\06 Friday On My Mind.mp3"/>
<media src="Gary Moore\07 Strangers In The Darkness.mp3"/>
<media src="Gary Moore\08 Thunder Rising.mp3"/>
<media src="Gary Moore\09 Johnny Boy.mp3"/>
<media src="Gary Moore\10 Over The Hills And Far Away.mp3"/>
<media src="Gary Moore\11 Crying In The Shadows.mp3"/>
<media src="Gary Moore\12 Reach For The Sky.mp3"/>
<media src="Gary Moore\13 Parisienne Walkways.mp3"/>
<media src="Metallica\00 Enter Sandman.mp3"/>
<media src="Metallica\01 That Was Just Your Life.mp3"/>
<media src="Metallica\02 The End of the Line.mp3"/>
<media src="Metallica\03 Broken, Beat & Scarred.mp3"/>
<media src="Metallica\04 The Day That Never Comes.mp3"/>
<media src="Metallica\05 All Nightmare Long.mp3"/>
<media src="Metallica\06 Cyanide.mp3"/>
<media src="Metallica\07 The Unforgiven III.mp3"/>
<media src="Metallica\08 The Judas Kiss.mp3"/>
<media src="Metallica\09 Suicide & Redemption.mp3"/>
<media src="Metallica\10 My Apocalypse.mp3"/>
<media src="2012 Singler\Rammstein - Du Hast.mp3"/>
<media src="2012 Singler\Rammstein - Engel.mp3"/>
</seq></body></smil>
 
Yep thanks, works great.

With notepad2 you need to change default encoding to utf-8 otherwise it will default back to ANSI when you save the .wpl
 
Code:
<?wpl version="1.0" encoding="utf-8"?>
<smil><head><title>Heavy rock</title></head><body><seq>
<media src="Billy Idol\01 Rebel Yell.mp3"/>
<media src="Billy Idol\02 Hot In the City.mp3"/>
<media src="Billy Idol\03 White Wedding.mp3"/>
<media src="Billy Idol\04 Eyes Without a Face.mp3"/>
<media src="Billy Idol\05 Catch My Fall.mp3"/>
<media src="Billy Idol\06 Mony Mony.mp3"/>
<media src="Billy Idol\07 To Be a Lover.mp3"/>
<media src="Billy Idol\08 Sweet Sixteen.mp3"/>
<media src="Billy Idol\09 Flesh for Fantasy.mp3"/>
<media src="Billy Idol\10 Don't Need a Gun.mp3"/>
<media src="Billy Idol\11 Dancing with Myself.mp3"/>
<media src="Gary Moore\01 Friday On My Mind.mp3"/>
<media src="Gary Moore\02 Wild Frontier.mp3"/>
<media src="Gary Moore\03 Take A Little Time.mp3"/>
<media src="Gary Moore\04 The Loner.mp3"/>
<media src="Gary Moore\06 Friday On My Mind.mp3"/>
<media src="Gary Moore\07 Strangers In The Darkness.mp3"/>
<media src="Gary Moore\08 Thunder Rising.mp3"/>
<media src="Gary Moore\09 Johnny Boy.mp3"/>
<media src="Gary Moore\10 Over The Hills And Far Away.mp3"/>
<media src="Gary Moore\11 Crying In The Shadows.mp3"/>
<media src="Gary Moore\12 Reach For The Sky.mp3"/>
<media src="Gary Moore\13 Parisienne Walkways.mp3"/>
<media src="Metallica\00 Enter Sandman.mp3"/>
<media src="Metallica\01 That Was Just Your Life.mp3"/>
<media src="Metallica\02 The End of the Line.mp3"/>
<media src="Metallica\03 Broken, Beat & Scarred.mp3"/>
<media src="Metallica\04 The Day That Never Comes.mp3"/>
<media src="Metallica\05 All Nightmare Long.mp3"/>
<media src="Metallica\06 Cyanide.mp3"/>
<media src="Metallica\07 The Unforgiven III.mp3"/>
<media src="Metallica\08 The Judas Kiss.mp3"/>
<media src="Metallica\09 Suicide & Redemption.mp3"/>
<media src="Metallica\10 My Apocalypse.mp3"/>
<media src="2012 Singler\Rammstein - Du Hast.mp3"/>
<media src="2012 Singler\Rammstein - Engel.mp3"/>
</seq></body></smil>
[/quote]


Did you upgrade your speakers? No way would the factory fitted do justice to the base settings required for your playlist!!
 
Back
Top