Scrobbles

What is it?

Scrobbles is a simple WordPress plugin that fetches your Last.fm data and displays it on your site where you wish.

Installation

  1. First, you need to upload scrobbles.php to your WordPress plugins directory.
  2. Next, you’ll need to do a quick edit of your template. Find the place where you’d like to display your songs, such as the sidebar, and add the following line:

    <?php scrobbles('username'); ?>
    

    Replacing username with your Audioscrobbler username.

  3. Activate the plugin in your WordPress admin panel, and that’s it!

Is that it?

That’s all you need to do, but there are a few things you can do to customise how Scrobbles displays your song info.

scrobbles() can take up to seven parameters that allow you to customise the output further. They are, in order:

  • username - Required

    Your Audioscrobbler username.

  • num_songs - Optional

    The number of songs to display. Defaults to 5 and is limited to a maximum of 10, that being the number of items Audioscrobbler displays in its RDF feeds.

  • gmt_offset - Optional

    How many hours in front of or behind GMT you are. Defaults to 0, GMT, but can be anywhere between -12 and +14.

  • format_string - Optional

    How to format the string. By default, it displays the song and date in this format:

    %song%<br />Played on %date%
    

    %song%, %link% and %date% are the available variables. Dates are formatted according to the date_format parameter.

  • date_format - Optional

    How to format the %date% variable. The variables are exactly the same as PHP’s date function.

  • base_element - Optional

    The base element of the “loop”. Defaults to ol, producing an ordered list. Scrobbles assigns this a class of scrobbles, allowing you to alter visual styling with CSS.

  • each_element - Optional

    The element that will be used for each song. Defaults to li, which makes sense in the context of an ordered list but might not if you change base_element.

Tips and Tricks

  • You can make your Scrobbles display a bit prettier and add a “powered by Audioscrobbler” logo if you like. Download this image to your server and add the following code to your theme’s CSS file:

    ul.scrobbles, #scrobbles { background:transparent url(path/to/image.png) no-repeat bottom right; padding-bottom:35px; }
    

    Changing the path to the image appropriately, and please don’t leech from Last.fm’s servers.

Discuss

You can discuss any problems or post suggestions for future upgrades to Scrobbles - or any of my other plugins - on the mailing list available here. Come join in!

Widget

If you use the Wordpress Widgets plugin and a compatible theme, you can use this version of Scrobbles instead:

Install, activate, and edit the options in the Presentation → Sidebar Widgets menu. Much easier to customise as well as to enable and disable!

Changelog

2005-08-23: Initial Release

2005-08-24: 1.1 - Added date and string formatting, used WordPress’s existing Magpie system, general tidying and improvements.

2005-09-09: 1.2 - Added gmt_offset parameter.

2005-11-01: 1.3 - Added %link% variable.

2005-11-08: 1.4 - Added %artist% and %title% variables - %song% still works, though. Changed to new Audioscrobbler feed URL.

65 Comments

  1. Posted August 25, 2005 at 7:20 am | Permalink

    hey, i use scrobbles now but could you get it to show the album name ? in lets say %album% ?

  2. Posted August 25, 2005 at 10:47 am | Permalink

    You can’t, unfortunately - Audioscrobbler only lists the artist and the title, despite plugins submitting album data. We’ll just have to wait and see if they change this in the future :(

  3. Posted August 26, 2005 at 3:04 am | Permalink

    i’ll keep this place bookmarked for now then :)

    nice plugin btw ^^~*

  4. Posted August 26, 2005 at 2:57 pm | Permalink

    Great work! I just signed up for an AS account and now I’m looking to show the info on my blog! One problem I’ve had in the past with developing these kinds of scripts though is what if the site goes down? The current version of Scrobbles doesn’t cache anything, so I’ll just get a PHP error message? That’s, like, not cool man. Any chance of this being in the TODO list?

    -Steve

  5. Posted August 26, 2005 at 3:41 pm | Permalink

    It does cache it - I’m not entirely sure what Magpie does when the site is down, though.

    Provided Magpie dies silently, all that will happen is Scrobbles will say that you have no recently played songs. If Magpie dies in an ugly way, all it’ll take is an error-supressing @ in front of the fetch_rss() call.

  6. Posted August 26, 2005 at 5:19 pm | Permalink

    Oh! I guess I didn’t realize what Magpie really is :) Thanks for the heads up!

    Great work! Now if Audioscrobbbler would stop relying on MusicBrainz for ALL the data in the RSS.. that would be lovely!

    –Steve

  7. Posted August 26, 2005 at 5:31 pm | Permalink

    Yeah, it’s quite annoying sometimes, especially when it converts artist/title names to Cyrillic character sets. I’ve spoken to Russ about this before but nothing came of it unfortunately.

  8. Posted September 4, 2005 at 3:24 am | Permalink

    Hmm is there any way to set the time offset from that of the Last.fm/Audioscrobbler server?

  9. Posted September 9, 2005 at 7:59 am | Permalink

    Sorry Dorie, I meant to reply to your comment but it slipped my mind. Yep, it’s certainly possible. I’ll implement it and add an extra parameter :)

  10. Posted September 26, 2005 at 7:39 am | Permalink

    The example using all the parameters is missing the GMT offset argument- if you use it as-is in a current version of the plugin, you get incorrect output.

  11. Posted October 3, 2005 at 6:49 pm | Permalink

    Does Audioscrobbler supply feeds of the other info like weekly top artists, top overall artists, etc.?

  12. Posted October 3, 2005 at 6:57 pm | Permalink

    It never used to, but it does now, apparently. Neat - I’ll be playing with this tonight for sure :)

  13. Posted December 3, 2005 at 5:46 am | Permalink

    This plugin is great! My only problem is a formatting one… getting everything to line up on the left. I think it’s a base_element/each_element thing, but i’m not sure.

  14. Posted December 3, 2005 at 12:33 pm | Permalink

    I think it’s just that <ul> elements have left-padding by default in most browsers. Try adding this to your CSS:


    ul.scrobbles { margin:0; padding:0; }

    and see if it works :)

  15. Posted December 4, 2005 at 7:53 pm | Permalink

    “It never used to, but it does now, apparently. Neat - I’ll be playing with this tonight for sure :)”

    Let rip, Robbie-boy!

  16. Posted December 10, 2005 at 1:36 am | Permalink

    werked like a charm, thanks Rob!

  17. Posted December 11, 2005 at 4:47 am | Permalink

    bizarre. it was working fine last night and isn’t now. scratches head

  18. Posted December 11, 2005 at 7:04 pm | Permalink

    Seems to be working now, when I look at your site - must’ve been a problem with Audioscrobbler. If you have any problems with it not fetching stats or something, 99% of the time it will be because of Last.fm and not the site.

    Rusters, what exactly would you like me to let rip on? :P

  19. Posted December 11, 2005 at 7:56 pm | Permalink

    yeah, the plug-in has always been working fine. like you said, it’s completely dependent upon Last.fm. it’s just the formatting didn’t really stay after the first time I checked it. really wierd. I wonder if it’s something in some of my other code that’s over-riding the scrobbles code you’ve written above?

  20. Posted December 12, 2005 at 10:30 am | Permalink

    Robert, I meant putting in options to display stats for your top x bands for a week, top x bands overall, top x songs overall, and so on. And not those rubbishy Last.fm images either, but text. I wouldn’t use them all myself, but they would all make your plugin better and I’m only trying to help you improve as a person.

  21. Posted December 12, 2005 at 1:53 pm | Permalink

    That would be really hard Rus :(

    Well not hard, but time consuming. I’ll do it at some point but not right now as I’m pretty busy with other stuff :)

  22. Posted January 14, 2006 at 6:59 am | Permalink

    hi… just wondered, how do i format the syntax for the extra options?

    thanks.

  23. Posted January 14, 2006 at 6:29 pm | Permalink

    What do you mean exactly? Which options?

  24. Posted January 14, 2006 at 11:00 pm | Permalink

    by default, i just enter my username in there, but i just wanted to know how to change additional things like the time offset (which is wrong for me), and as i see it, its just gmt_offset in there… somewhere somehow… i just dont know how :)

  25. Posted January 15, 2006 at 4:01 am | Permalink

    Ah, ok.

    scrobbles('username', 5, -2);
    

    Will display 5 songs with a gmt_offset of -2. The parameters are in the same order as they appear above, and you can add as many as you like; for example, here’s one that uses all of the possible options:

    scrobbles('username', 5, -2, '%song% (%date%)', 'h:i:s', 'ul', 'li');
    
  26. Posted January 15, 2006 at 10:27 pm | Permalink

    ah, thanks a lot :)

  27. Posted January 17, 2006 at 8:56 pm | Permalink

    Hey, I have installed the plugin without any problems, but all I get on the front page is the “No recently played tracks to display.” message, even though I have just played a song updated to the last web site ! mmm any ideas ? Thanks

  28. Posted January 18, 2006 at 2:02 pm | Permalink

    problem solved: it just took a bit of time to show the songs after I played them.

  29. Posted February 11, 2006 at 2:53 pm | Permalink

    I have tried to use your plugin at my blog :http://www.nutronic.net/nublog/?page_id=18 on its own page but for some reason I just see nothing where it should be, i am using Opera browser and its the same really for Internet Explorer too.

    Any suggestions?

    When making the page It looks like this:

    My Playlist

    is that correct cus thats what your instructions state.?

  30. Posted February 11, 2006 at 4:11 pm | Permalink

    If you want to use it in a page, you’ll need to download PHPExec/RunPHP.

  31. Posted February 12, 2006 at 1:01 pm | Permalink

    I’ve noticed on your site that your recent plays are cached. On my blog, they disappear when they go from my Last.fm profile page. How do I make them cache?

  32. Posted February 12, 2006 at 5:13 pm | Permalink

    I don’t do anything special, they just stick around on my Last.fm - dunno why. I guess it might be because I’m a Last.fm subscriber, although that’s not listed as one of the benefits on the site.

  33. Posted February 12, 2006 at 9:54 pm | Permalink

    Weird, I’m a subscriber too, but the recent plays fade away after a few hours. Maybe it’s because I’m on the dreaded cluster 2.

  34. arnaudt
    Posted February 24, 2006 at 10:11 pm | Permalink

    Hello everyone.
    I must be very stupid but… I am missing something here.

    • I did put my audioscrobbler user name on my side bar template

    • But should it be put on the scrobbles.php file too ?
      It seems obvious to me, but nowhere on this page is told how to enter my username on the file.

    Am I completely wrong ?
    Thanks for helping me :)

  35. arnaudt
    Posted February 24, 2006 at 10:25 pm | Permalink

    Got it.
    I know why I was completely puzzled : the “feed” of my recent tracks itself is wrong (event on lastfm website).
    So it’s not the plugin that is wrong, it’s something with iScrobbler within iTunes.

    Sorry :)

  36. Posted March 2, 2006 at 2:03 pm | Permalink

    The logo seems to go on the top of the last line, is there a way to fix this?

  37. Posted March 2, 2006 at 2:16 pm | Permalink

    It shouldn’t - are you sure you’ve added the padding, and that the padding isn’t being overriden later on?

  38. Posted March 2, 2006 at 3:52 pm | Permalink

    I added ul.scrobbles { margin:0; padding:0; } as the last line of my css file but that didn’t help. Is there anything else I could do?

  39. Posted March 2, 2006 at 3:56 pm | Permalink

    You want it to have padding at the bottom, though. Look at the CSS above.

  40. Posted March 2, 2006 at 4:38 pm | Permalink

    It doesn’t seem to move, no matter what I do.

  41. Posted March 3, 2006 at 12:43 am | Permalink

    Goodie plugin mister! :)

  42. Posted March 19, 2006 at 8:21 pm | Permalink

    Muchos gracias!

  43. Posted April 1, 2006 at 8:33 am | Permalink

    is there an alternate download link, because when I click on the upper download link nothing happens, but a blank page.
    thanks

  44. Posted April 9, 2006 at 1:51 pm | Permalink

    Love your plugin’s. Just got Now Reading and Scrobbles onot my site. You mention in your Scrobbles guide that you can stick the logo onto the site and tidy up the presentation. Any way of doing that with the widget?

  45. Posted April 9, 2006 at 3:06 pm | Permalink

    Updated for the widget CSS.

  46. Posted April 9, 2006 at 9:20 pm | Permalink

    Awesome!!!

  47. Posted April 9, 2006 at 9:27 pm | Permalink

    ok not sure if u meant u had updated something regarding my question…
    Uploaded the widget scrobble.php again after redownloading and no change apparent?
    Prob just me!!

  48. Posted April 9, 2006 at 9:38 pm | Permalink

    My fault see the change now…. get a double logo on my site though any ideas?

  49. Posted April 10, 2006 at 3:21 am | Permalink

    Looks fine to me?

  50. Posted April 11, 2006 at 9:27 am | Permalink

    Awesome plugin! Having a little trouble with the image being on the bottom line, but I should be able to figure it out, I think :)

  51. Posted April 12, 2006 at 2:54 pm | Permalink

    Any plans to add support for the other feeds provided by AudioScrobbler, namely weekly tracks and weekly artists?

  52. Posted April 13, 2006 at 9:07 pm | Permalink

    Awe.some. About time I came across one of these that not only actually worked but was easy to install. Way easy. Thanks! :-)

  53. Posted May 4, 2006 at 4:32 pm | Permalink

    Fantastic plug-in! The one problem I’m having is that it can’t display symbols like &. Any idea how I can tweak it so it will? I’d rather not have to rename my music collection over a display issue

    Help!!!

  54. Posted May 12, 2006 at 1:32 pm | Permalink

    I love this plugin, actually the only audiscrobbler plugin that works for me for some reason. I have been trying to validate my site, right now for XHTML, and scrobbles produces an error; “…Suicide Commando Mordfabrik< / li > < / ul > < / > < br / >”
    It’s of course the < / > that is the error, I have no idea of how to edit it so it wont do this. Advice is appreciated.

  55. maren
    Posted May 12, 2006 at 7:12 pm | Permalink

    this is the first audioscrobbler plugin for WP i managed to handle - it works!! thanks a lot.

    but i have one question since i am a complete PHP noob. i have a german blog and want the date to appear in geman.
    i googled and found out that i obviously have to add sth like “setlocale(LC_TIME, ‘de_DE’);” to the php code.

    but where?? i tried t place it in several parts of scrobbler.php but i either get error messages or nothing happens at all.

  56. Stephen
    Posted May 25, 2006 at 3:23 pm | Permalink

    There seems to be a very long delay between when a song is submitted to Last.fm, and when it shows up in the plugin. The web site updates immediately, as do the rss feeds. Where is the plugin getting its information from?

  57. Posted May 25, 2006 at 3:35 pm | Permalink

    The RSS feeds. Scrobbles caches for 3 minutes before it will fetch the feed again.

  58. Stephen
    Posted May 25, 2006 at 3:51 pm | Permalink

    Hmmm… I’m seeing stale data for longer than 3 minutes - more like an hour. I know the rss feed is updated since I can check it directly from last.fm. I wonder if my web provider is doing something strange.

  59. Posted May 26, 2006 at 10:29 pm | Permalink

    It’s definitely a caching issue. The list that is displayed does not update unless I make a change to the page. Where is the cache of the RSS feed kept?

    Thanks for the help!

  60. Posted May 27, 2006 at 2:11 pm | Permalink

    Make a change to what page?

  61. Aerokinesis
    Posted June 2, 2006 at 12:11 pm | Permalink

    Is there any way I can just display the song title without the date? I can’t seem to figure out a parameter I can use for that =/

  62. Posted June 2, 2006 at 3:58 pm | Permalink

    scrobbles(’username’, 5, 0, ‘%song%’);

  63. Martin
    Posted June 16, 2006 at 10:12 am | Permalink

    I agree with Jon (post 53): it would be nice if there was a way to display “&” without messing up the look entirely, like this:
    Ralph+Carmichael+%26+The+Young+People - The Flower Shoppe

    Other than that: brilliant!

  64. Posted August 28, 2006 at 5:13 pm | Permalink

    Hey Rob,

    Dude…great plugin… granted it’s not ajaxy, but hey who cares at this point! I’m so sick to death of trying a “known” plugin only for it to fail validation. Nice work dude… earned you a spot under my “WordPress Heros” section. :)

  65. Posted November 18, 2006 at 1:08 pm | Permalink

    Hi

    I don’t really have anything new to say that isn’t already in the comments. I just wanted to say thank you for this plug-in. I just recently started working with wordpress and I have only little knowledge of PHP, but this is so easy to use and I really like the way I’m able to customise it.
    So just to say thank you.

30 Trackbacks

  1. By Roblog » Blog Archive » Another redesign! on August 24, 2005 at 5:46 am

    [...] ke it, still quite a bit of tweaking to do though. I also wrote a quick WordPress plugin, Scrobbles, that displays recent Audioscrobbler tracks in my sidebar [...]

  2. [...] d not the comments and other stuff.. so I disabled it and changed to another plugin called Scrobbles so now it shows the last 5 songs I have listened to the topmost song w [...]

  3. [...] bernehmen, so da es hier mal gar nicht so leer aussieht. Mit so wichtigen Extras wie dem Scrobbles-PlugIn fr den Last.FM-Profil-RSS-Feed oder der super Seit [...]

  4. [...] e two relevant links here, I suppose, are my user page and the link to the WP plugin—Scrobbles, written by the fabulous Rob— which creates the Audioscrobbler list you s [...]

  5. [...] ot seem to be a way to set a message to display when there are no recently played tracks. Scrobbles is another great little plugin. This one is also very easy to set up and displ [...]

  6. [...] o a custom database prefix) Scrobbler (http://leflo.de/projekte/scrobbler/) 1.3 Scrobbles (http://robm.me.uk/projects/plugins/wordpress/scrobbles/) SearchHistory (http://andersdren [...]

  7. By waste of blog space » Blog Archive » tweaking on December 29, 2005 at 6:48 am

    [...] ss that shows the recently played songs on the page (see the left hand side) is avail from http://robm.me.uk/projects/plugins/wordpress/scrobbles/ I’m IBM ism I’d h&#82 [...]

  8. [...] Scrobbles - Last.fm music integration [...]

  9. By b.log [at] artgeex » Halo Halo on January 12, 2006 at 1:18 pm

    [...] Nothing much to say. At first I wanted to put the del.icio.us plugin seperti yang diajar oleh Bos Gei Jio instead of the Audio Scrobbles aka Last.FM plugins, tetapi ianya tidak seperti yang saya ingini.However, the Last.fm Plugin looks cool though. Now, I have the opportunity to promote my fav songs kepada anda Inche Bloggie.. ngeee [...]

  10. By Very True Things - Paying the price of laziness on February 22, 2006 at 10:06 pm

    [...] When I added the Scrobbles plugin it fetched my play list from Last.fm, encoded in UTF-8. Obviously I have a lot of bands on my list with röck döts… [...]

  11. By The Aquinas Hub » Blog Archive » Scrobbles on February 24, 2006 at 12:14 pm

    [...] I’ve installed Rob Miller’s plugin called Scrobbles which fetches the RSS feed from Audioscrobbler and displays them where ever you want. Pretty cool really. [...]

  12. By Michael Schantin » amaroK mit last.fm Support on March 6, 2006 at 10:47 pm

    [...] Heute abend hatte ich die Gelegenheit, mir amaroK mal etwas genauer anzuschauen und bin dabei auf eine interessante Funktion gestossen. Und zwar gibt es ein sogenanntes audioscrobbler-Plugin für amaroK, welches den Player mit http://www.last.fm/ verbindet und Statistiken über die gehörten Lieder an eine zentrale Datenbank sendet, wo diese auf vielfältige Art und Weise ausgewertet werden können. Beispielsweise gibt es mehrere Chart-Funktionen. Einmal seine eigenen Charts, die sich einfach aus der Häufigkeit der gespielten Songs zusammensetzt, dann gibt es die Charts von allen Usern zusammen (sehr interessant, auf den ersten Plätzen sind nach wie vor die Beatles vertreten g aber auch Radiohead und natürlich Coldplay - der Dienst kommt übrigens aus England) sowie Charts der einzelnen Interpreten. So ist z.B. Pure Morning das meistgespielte Lied von Placebo oder Clocks jenes von Coldplay. Weiterhin gibt es einen Menüpunkt “similar”, mit dem man ähnliche Bands aufspüren kann. Hier kann also den Musikhungrigen (wie mir) geholfen werden, auf schnelle Art und Weise gute und seltene Musik zu finden. Besonders interessant ist dies für mich beim französischen Content, da bekomme ich seitdem ich wieder in Deutschland bin verständlicherweise nicht mehr soviel mit (die Erasmuswochenenden mal ausgenommen, gell Harald und Wolfgang ?!). Prima Sache. Man kann dann nach intensiver Benutzung scheinbar auch nach Leuten suchen, die ähnliche Geschmäcker zu haben scheinen und sich dort etwas abschauen. Mal sehen, ob ich das brauchen werde. Finde es auf jeden Fall eine witzige Angelegenheit und da ich auch dazu stehe, was ich höre habe ich mir gleich mal die RSS-Feed-Funktion zu Nutzen gemacht, um sie hier einzubauen. Auf http://robm.me.uk/projects/plugins/wordpress/scrobbles/ gibt es ein Plugin für Wordpress-basierte Weblogs, das aus einer einzigen Datei besteht und sich in 2 Minuten einrichten läßt. Augen rechts und ihr wisst, was ich meine. Ein Dankeschön an die Entwickler! [...]

  13. By isPanic | Back in business on March 16, 2006 at 8:18 pm

    [...] Si usas Wordpress, ya existen plugins (compatibles con la versión 2.0.x de Wp) que sacan provecho de ésta API. En mi caso, la información que despliego es: [...]

  14. By ammus.kuukso.net » Arkisto » Viikonloppu on April 9, 2006 at 5:55 pm

    [...] Torstaina vaihdoin Apachen kuvakkeet enemmän karkkimaiseksi, samaa ikoni teemaa noudattaen kun tällä omalla koneella. Tänään laitoin tohon sivupalkkiin Scrobbles-plugilla näkymään kolme viimesintä biisiä, mitä olen soittanut. Omalta koneelta menee last.fm:ään tiedot mitä olen soittanut ja Scrobbles listaa ne sitten tuohon. Tosin plugi sai kerran koko sivuston sekasin, sekotti skandit ja sivu täynnä php:n virheilmotuksia, toivottavasti asia nyt korjaantui. [...]

  15. By Don’t Panic » Major Plugs on April 10, 2006 at 4:08 am

    [...] I so just wanna drop a quick but large plug in for Rob over at Roblog.  He created this really cool Now Reading plugin not to mention lots of others. I also grabbed his Scrobbles and I’m likin that one too. [...]

  16. By Shinyidol » Blog Archive » Recent Tunes added on April 11, 2006 at 9:30 am

    [...] So I am really starting to fool around with various plugins for Wordpress, and I found a pretty cool one that displays my most recent played songs on the sidebar.  So now you can get an idea of what I have been listening to.  Got to give a shoutout to Roblog for the great plugin. Posted by Collin | Posted in General, Music | [...]

  17. By ammus.kuukso.net » Arkisto » Takaisin Suomessa on April 24, 2006 at 9:27 pm

    [...] Tuo Scrobbles-plugi on jostain syystä hyytynyt. Plugi kyllä listaa kaikki biisit mitä olen soittanut, mutta ei lähetä niitä last.fm:ään. Täytyy koittaa korjata jossain vaiheessa. [...]

  18. By ammus.kuukso.net » Arkisto » Urheiluhullu? on April 24, 2006 at 9:28 pm

    [...] Scrobbles-plugi rupesi taas toimimaan ihan itsestään, vika taisi olla last.fm serverissä tai jossain muualla kun täällä päässä. Pääasia että taas pelittää. [...]

  19. By Henning Dippel » last.fm / Audioscrobbler on May 1, 2006 at 4:07 pm

    [...] Eine Empfehlung: last.fm - eine Musikdatenbank mit interaktivem Webradio, dass (wenn gewünscht auch über ein Plugin im bevorzugten Medienplayer) den persönlichen Musikgeschmack analysiert und dadurch personalisierte Musik liefert. Auf diese Art und Weise entdeckt der Nutzer neue Bands und Lieder, die seinem Geschmack entsprechen (wie ich soeben “The Postal Service”). Auch nett: das Wordpress-Plugin “Scrobbles“, das die zuletzt gespielten Songs des Nutzers darstellt (siehe rechte Navigationsspalte “Audioscrobbler”). Da stellt sich nur die Frage: “Will ich das?”. Zunächst mal ja, aber wahrscheinlich nicht für immer Der last.fm-Player (auch für Linux verfügbar) [...]

  20. [...] Well, not quite. I just modded my sidebar again, and now there’s a recently played function that works like a dream (compared to the options from last.fm which kinda worked more like some nightmare, mostly because it wouldn’t work properly and gave my blog template some heart-wrenching divisions.) [...]

  21. [...] So, here’s the deal, instead of using my own little Last.fm code that I did a while back I since have opted to use Rob Miller’s Scrobbles WP plugin (version 1.4). Awesome plugin, mad props for Rob for coding it, but one thing was kind of lacking was the support for special characters such as #, &s, and yes even commas. I listen to a lot of podcasts and vidcasts and some of them have those characters in the titles. What this results in is a very … well, ugly looking printout with a lot of %23s and such in them. [...]

  22. [...] Scrobbles Displays recently played tracks. The link above does work, but the page is badly designed and you have to scroll down to see the plugin information. Availiable as widget or plugin. Uses Magpie for feed parsing and caching. [...]

  23. By KelleyChambers.com on August 28, 2006 at 5:29 pm

    last.fm/QCD & Scrobbles…

    Dude, I’ve been to last.fm numerous times, combed through various pages and I still can’t figure it out.   What I took away from the site is that you can create your own personalized internet radio station by grabbing the information f…

  24. [...] Scrobbles (tags: wordpress Last.fm) [...]

  25. By WordPress Plugins and Optimization » TechRoam on November 18, 2006 at 7:33 pm

    [...] As I have set up this blog I spend countless amount of time researching on the Internet about available WordPress plugins and here are some of my opinions and questions from my research. The goal was to carefully select and only implement the most important plugins in order not to slow the website down. The problem is deciding what is important and what is better or worse. Is my music play list really important? Probably not but it adds personality to the blog and it might even raise search engine ranking. This is really the only plugin that I used that displays personal information, everything else serves a purpose. Maybe I should have said relative purpose, most of the plugins do not really help in providing better content but enhance the look of the blog. The math question on comments is my current spam protection tool, which is not necessary since I just started the blog, but I think it is better then the regular captcha plugins which I do not like because I often cannot read the image letters. Plus, captcha doesn’t work as effectively as it should so if I ever run into spam problems I will just install Bad Behavior 2 and Spam Karma 2. Another plugin that is rather useless is the graph that shows post times called sparkstats. In my opinion, however, it looks pretty cool and its definitly better then BlogTimes which is quite similar. I also had to add a clean archives plugin to enhance the look of the archives and wpPaginate to get rid of the next/previous look I did not like. I don’t think these plugins slow down the website too much so why not add them. The important plugins that I have are Popularity Contest, Most Commented, and Jerome’s Keywords. Recent posts and recent comments were already implemented into the theme but they are also most important in my opinion. These plugins provide internal linking and engage the viewer in the content on your blog so if they slow down the website, it’s worth it. Plus, I don’t think they cause any real delay. I have a bunch of plugins that run in the admin, they are essential, and I am pretty damn sure that they do not effect how fast the website loads. I am referring to things like post spell checker called Corrector, Maintenance Mode, and Flickr Photo Album. The Flickr Photo Album is quite large and I only use it to quickly insert my flickr pictures into posts, but when I check the source of the blog I don’t see anything that has to do with this plugin so it should not effect the load speed. Is this correct? Translation is definitly important and I use WP-Translate which I think is the best plug-in out there. My definition of best is simple and effective. Every blog should have a translation feature, I hate reading blogs written in a language I don’t know and manually trying to translate them via Google. It’s so much easier to just click on a flag. While I am on this subject I would like to plug my new, not quite finished, project: TRANSLATEN. The idea is that computer translation sucks and many people want human translation. The website is going to be a simple yet effective forum powered by vanilla where anyone can post something they want translated and others can translate it by replying to the thread. Things like paypal donations to translators and voting on quality of translation is being implemented. If you are interested in something like this, please go and join. To finish with the WordPress plugins, I also added Users Online, Ajax Contact Form, Subscribe to Comments, Vipers Video Quicktags, Subscribe 2, and Xfish meta. I consider these pretty important. I also installed the BDP Referral Tracker which I think is quite large and thus, I wonder if this could be slowing down my blog. If you have any opinions on this please leave me some comments. Overall, I am trying to find a balance between speed of the website, functionality, and content. I have about 30 plugins installed and I think that the website is still loading fine so far. The slow down is mostly generated by the javascript from AdSense but there is nothing I can do about that. Finally for tracking stats I use Google Analytics and SiteMeter. I have two of them because I want to test how they compare. Users online and BDP Referral Tracker also provide some statistics. Is it a good idea to keep Google Analytics and SiteMeter or should I settle for just one? Does Users Online or BDP Referral Tracker slow down the load time of the website? I appreciate all your opinions. [...]

  26. [...] saannut hieman väsättyä, lisäsin Blogittaja sivun, muutin värimaailmaa ja linkkien väriä, ja Scrobbles-plugilla laitoin viimeksi soitetut biisit näkymään [...]

  27. By Hung Up on Last.fm | Design Adaptations on April 11, 2007 at 3:45 pm

    [...] with tagging or recommendations yet, but I got an earful of great music all day long. I also found this nifty little plugin for pulling in and displaying your latest tracks on your blog. Last.fm has what they call charts, [...]

  28. By SaschDaily » Blog Archive » PlugIn-Schlacht on April 28, 2007 at 7:37 pm

    [...] Link Dieses PlugIn arbeitet mit dem sauguten Webdienst last.fm zusammen. Dieser Dienst ist eine Art Webradio, welches versucht, nur die Musik zu spielen, die dir gefällt. Sollten Sie sich unbedingt ansehen. Dieses PlugIn macht dann nichts anderes, als den von last.fm generierten RSS-Feed auszulesen und zeigt einem dann an, welche Tracks als letztes gehört wurden - auf der eigenen Homepage. Funktioniert super gut, es sei denn, last.fm hat einen fehlerhaften Tracknamen, der aufgrund fehlender Leerzeichen über den Sidebar-Bereich hinausgeht und das Design verständig verhunzt. Ist aber bisher nur einmal passiert [...]

  29. By mattbriançon » Scrobbles Plugin on June 14, 2007 at 5:42 pm

    [...] just added a Last.fm called Scrobbles. It’s very simple and makes for a clean way to list up to ten of your recently played [...]

  30. [...] saannut hieman väsättyä, lisäsin Blogittaja sivun, muutin värimaailmaa ja linkkien väriä, ja Scrobbles-plugilla laitoin viimeksi soitetut biisit näkymään [...]