Yann Tiersen Makes Good Music

I was searching for mp3s on Google one day, and stumbled upon a song from the soundtrack of the movie Le Fabuleux destin d'Amélie Poulain which I've just watched days before. It all started when I was listening to the radio and heard a remix of the 80s song, Africa by Toto. I wanted to listen to the original, but I didn't have it in my collection. So I searched Google for it using this magic string:
-inurl:htm -inurl:html intitle:"index of" mp3 "toto africa" - Google Search

You can modify the search string to fit your needs by replacing the "toto africa" term to any song you want. However, back to that Amelie soundtrack, I downloaded the song I found, and kind of liked it. I searched around for the whole soundtrack album, downloaded it, listened to it, and it is a good album. All the songs are from Yann Tiersen.

I personally think this Yann Tiersen guy is a musical genius. Most of his songs are instrumental where he mixes sounds of the violin, piano and accordion to make exquisite music. I downloaded a few other of his albums and I like his work. It's a good alternative if you want to listen to music that has no or minimal singing apart from classical or techno. It sits in the middle between the two, not as slow classical, but not as fast as techno.

Here's a sample of what he's all about:










And about the music player above, I searched around on how to present multiple mp3 files so that the user can easily play them across platforms, and I found a Flash-based solution called XSPF by a guy called Fabricio Zuardi. This page tells you how to set it up, but the code on that page didn't work perfectly for me. It worked okay in Firefox, but in IE it loaded a different playlist. The syntax on how to create the xspf playlist showed on the site is okay, but I had to tweak the object embed code to make it work on both Firefox and IE. Here's my modified code:

<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="400" height="170" id="xspf_player" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="http://www.yourwebsite.com/xspf_player/xspf_player.swf?playlist_url=http://www.yourwebsite.com/music/playlist.xspf?xn_auth=no" />
<param name="quality" value="high" />

<param name="bgcolor" value="#e6e6e6" />
<embed src="http://www.yourwebsite.com/xspf_player/xspf_player.swf?playlist_url=http://www.yourwebsite.com/music/playlist.xspf?xn_auth=no&autoload=true" quality="high" bgcolor="#e6e6e6" width="400" height="170" name="xspf_player" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></embed>
</object>

And about the code above, I found out in that you can't just paste code to show it or it will run the code rather than display it. You need to "escape" it or something. Here's a website that con do it for you.

0 comments: