<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Discussion on MuxScrobbler | Userscripts.org</title>
    <link>http://userscripts.org/scripts/show/26396</link>
    <description>Recent comments on userscript: MuxScrobbler</description>
    <language>en-us</language>
    <ttl>60</ttl>
    <item>
      <title>Archived Comments, replied by GeekShadow @ Sun, 28 Sep 2008 05:19:21 -0500</title>
      <description>&lt;p&gt;This script work well with OpenTape !&lt;/p&gt;</description>
      <pubDate>Sun, 28 Sep 2008 05:19:21 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74603</guid>
      <author>GeekShadow</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by jstn @ Mon, 07 Jul 2008 06:22:48 -0500</title>
      <description>&lt;p&gt;&lt;a href=&quot;http://muxtape.tumblr.com/post/41303699/last-fm-scrobbling&quot;&gt;Muxtape now supports Last.fm natively!&lt;/a&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 07 Jul 2008 06:22:48 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74604</guid>
      <author>jstn</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by casperbp @ Tue, 01 Jul 2008 06:56:41 -0500</title>
      <description>&lt;p&gt;Muxtape has changed their CSS-layout. The class names of the song-container has changed from &quot;&lt;code&gt;songs&lt;/code&gt;&quot; to &quot;&lt;code&gt;stripes&lt;/code&gt;&quot; and the songs themselves from &quot;&lt;code&gt;song&lt;/code&gt;&quot; to &quot;&lt;code&gt;stripe&lt;/code&gt;&quot;. The jQuery-queries should be changed to look for these new class-names to make the script functional again. Cheers. :)&lt;/p&gt;</description>
      <pubDate>Tue, 01 Jul 2008 06:56:41 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74605</guid>
      <author>casperbp</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by digitalspaghetti @ Sat, 31 May 2008 17:18:27 -0500</title>
      <description>&lt;p&gt;Thanks very much for these fixes casperbp, and thanks for the blog post too!  I've added your fixes to the file.&lt;/p&gt;</description>
      <pubDate>Sat, 31 May 2008 17:18:27 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74606</guid>
      <author>digitalspaghetti</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by casperbp @ Mon, 26 May 2008 17:44:35 -0500</title>
      <description>&lt;p&gt;Nice script!&lt;/p&gt;

&lt;p&gt;I had a problem where I got my track submitted twice or even up to 5 times. I changed the interval to 10 seconds instead of 5 and added a return statement after setting &lt;code&gt;lastid&lt;/code&gt; to &lt;code&gt;currentid&lt;/code&gt;:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
...
            onload: function(responseDetails) {
              muxscrobbler.vars.sendresponse = responseDetails.responseText.split('\n');
              if (muxscrobbler.vars.sendresponse[0] == 'OK') {
                muxscrobbler.vars.lastid = muxscrobbler.vars.currentid
                el.append('&lt;strong&gt;Your song has been scrobbled.&lt;/strong&gt;');
		return;
              } else {
                throw Error('Unable to scrobble Song');
                el.append('&lt;strong&gt;Unable to scrobble song.&lt;/strong&gt;');
              }
            }
...
&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;Don't know which of the two did the trick, but I don't get multiple submissions per track any longer. I am running Firefox 2.0.0.14 @ Ubuntu 7.10.&lt;/p&gt;

&lt;p&gt;Another small problem I had was when playing tracks with ampersand (&amp;amp;) in the track- or artist-name. Instead of splitting by spaces and joining by '%20', I simply used javascripts escape()-function to URL-escape the track- and artist-name:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;
...
        muxscrobbler.vars.track = el.find('.name').text()
        muxscrobbler.vars.track = muxscrobbler.vars.track.split(&quot;\n&quot;).join(&quot;&quot;);
        muxscrobbler.vars.track = muxscrobbler.vars.track.split(&quot;-&quot;)
        muxscrobbler.vars.currentartists = Trim(muxscrobbler.vars.track[0]);
        muxscrobbler.vars.currentsong = Trim(muxscrobbler.vars.track[1]);
        muxscrobbler.vars.currentartists = escape(muxscrobbler.vars.currentartists);
        muxscrobbler.vars.currentsong = escape(muxscrobbler.vars.currentsong);
        
...
&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;Apart from that the script works wonders. :-)&lt;/p&gt;</description>
      <pubDate>Mon, 26 May 2008 17:44:35 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74607</guid>
      <author>casperbp</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by Dan1el @ Wed, 21 May 2008 01:07:03 -0500</title>
      <description>&lt;p&gt;OK I tried to edit the script and change the prompt sequence to my own password and it still doesn't work. I'm no expert on programming so I may be doing any stupid thing, but I think it is not running the script from the beggining. It works fine on Firefox, but I like Safari better, I downloaded GreaseKit for Safari and I think the problem may be in there. Thanks...&lt;/p&gt;</description>
      <pubDate>Wed, 21 May 2008 01:07:03 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74608</guid>
      <author>Dan1el</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by jongam @ Tue, 20 May 2008 22:50:40 -0500</title>
      <description>&lt;p&gt;Dan1el, try editing the script and add your username and password manually.&lt;/p&gt;</description>
      <pubDate>Tue, 20 May 2008 22:50:40 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74609</guid>
      <author>jongam</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by Dan1el @ Sun, 18 May 2008 11:20:26 -0500</title>
      <description>&lt;p&gt;Does it work on Leopard? 
&lt;br /&gt;I'm using a Muxtape standalone player I downloaded from the muxtape blog. It has the Userscripts menu and the script shows as installed, but nothing else happens...&lt;/p&gt;</description>
      <pubDate>Sun, 18 May 2008 11:20:26 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74610</guid>
      <author>Dan1el</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by jongam @ Sat, 17 May 2008 19:01:37 -0500</title>
      <description>&lt;p&gt;This was from XP, Firefox 2, EST.&lt;/p&gt;</description>
      <pubDate>Sat, 17 May 2008 19:01:37 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74611</guid>
      <author>jongam</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by digitalspaghetti @ Sat, 17 May 2008 04:12:34 -0500</title>
      <description>&lt;p&gt;@jongam - Very weird, the script should be getting UTC time and passing this.  I'm not able to confirm this.&lt;/p&gt;

&lt;p&gt;Can you tell me what OS your on, and your Timezone, that would be great!&lt;/p&gt;</description>
      <pubDate>Sat, 17 May 2008 04:12:34 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74612</guid>
      <author>digitalspaghetti</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by jongam @ Tue, 13 May 2008 22:15:06 -0500</title>
      <description>&lt;p&gt;On second look, it looks as though it's telling last.fm that I listened (will listen?) to the tracks  in the future. For example &quot;in 59 minutes&quot; opposed to &quot;2 minutes ago&quot;. Seems to be about an hour into the future for all songs. An hour plus the song length possibly? I know it's still in alpha, just making sure you know about this particular issue.&lt;/p&gt;</description>
      <pubDate>Tue, 13 May 2008 22:15:06 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74613</guid>
      <author>jongam</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by jongam @ Tue, 13 May 2008 22:00:04 -0500</title>
      <description>&lt;p&gt;Works great so far. Thank you so much for this script. I've been hoping for a last.fm/muxtape solution ever since I first used muxtape.&lt;/p&gt;</description>
      <pubDate>Tue, 13 May 2008 22:00:04 -0500</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74614</guid>
      <author>jongam</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
    <item>
      <title>Archived Comments, replied by Jesse Andrews @ Tue, 16 Nov 2004 19:05:46 -0600</title>
      <description>&lt;p&gt;The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)&lt;/p&gt;</description>
      <pubDate>Tue, 16 Nov 2004 19:05:46 -0600</pubDate>
      <guid isPermaLink="false">userscripts.org:17170:74602</guid>
      <author>Jesse Andrews</author>
      <link>http://userscripts.org/topics/17170</link>
    </item>
  </channel>
</rss>
