FeedReader: My New Favorite RSS Aggregator/Reader

My requirements for an RSS feed reader were simple:

  • Windows Support
  • Toaster Pop-ups (with individual news item titles)
  • Feed filters
  • Free
  • I had been using FeedDemon for a while, but it missed the second half of my toaster requirement. That and for whatever reason it seems to take days to get updates to feeds, even when I'd tell it to update sooner.

    I recently switched to FeedReader, and I have to say, if you're looking for a Windows-based RSS reader, you should make this the first client you try. It will probably be the last one you'll need.

    If you aren't using an RSS reader, I highly recommend it. They make life so much easier when you are trying to keep up to date with your favorite news sites, and most sites offer an RSS feed nowadays. It's nice to be able to just open FeedReader and see a list of what sites have updated articles, and even limit the stories to the topics you want. In my case, it's made keeping up with all the latest Palm Pre news a snap. Instead of periodically refreshing 10-15 different sites in Firefox, I just listen for that chirp.

    SourceForge Spam (or How I Learned to Stop Worrying and Just Cancel My Account)

    After having a SourceForge account for about 10 years, I'm canceling it for one reason and one reason alone: Spam. SourceForge has this "feature" where anyone can email you at yourusername@users.sourceforge.net, and they will happily forward it on to the email address you have on file with SF. That's great, except, I don't want spam bots emailing me. It would be great if you could either opt out of this behavior, or even specify a human-readable anti-spam address as the forwarding address, but SF doesn't offer either of these options. It's either you have an account and all the crap that comes with it, or you have nothing. So I choose nothing.

    Thanks for nothing SourceForge.

    So I guess if I actually want to use the SF site for forum activity, I'll have to re-create my account each time.

    Update: Ok I lied, sort of. Turns out that if you delete your SF account, you can't come back and re-create it. This sucks because I like my persona, and should I come back, I'd like to re-use it. So now I'm willing to give feedback a chance. Vote for Solution 3!: SourceForge Spam Solution

    Update 10/15/2009: You complained, and SF listened. I got a Tweet last week from @sourceforge informing me that they have added an option to allow you control over your alias behavior. You can find this setting at https://sourceforge.net/account/. Go there. Now! That is all.

    Countdown to Palm Pre

     
    I'm dying for this thing to come out. I'm even more hopeful that I'll get my hands on it come release day.
     
     
     


     
     
    Countdown to Pre-Day

    Restreaming ASF to MP3 Via Icecast and VLC

    Say you have an internet radio stream that you like to listen to. You like to actually get up from your computer once in a while and go outside, so you want to play it on your iPhone/Blackberry/G1/Treo/Centro/Pre/Whatever as you're out and about. But wait! Due to poor decision making by your beloved stream provider, your favorite stream is only in Microsoft's poorly-supported ASF streaming format. There's no MP3 or OGG options! Many if not all of the phones I just mentioned may/will not play these streams, at least not natively. MP3 on the other hand, is ubiquitous (though, given, not truly as free as OGG). One option you may have, if you run your own Linux server, is to download the ASF stream, re-encode it to MP3, and re-stream it via your own Icecast server. Icecast is easy enough to set up, however information on setting up the VLC portion of this workaround online seems a little slim online, so I thought I'd make a post simplifying the setup.

    First off, check to make sure your VLC has "Shout" Shoutcast/Icecast output support:

    vlc --list | grep access_output_shout

    You should see the following in the output:

    access_output_shout IceCAST output

    If not, you may need to either re-install with a version of VLC that supports shout output, or recompile it with shout support.

    Then run the following command, altering the items in bold for your purposes (all on one line):

    cvlc "http://classicalstream2.publicradio.org/classical" ':sout=#transcode{acodec=mp3,ab=192,channels=2}:duplicate{dst=std{access=shout,mux=raw,dst=source:YOURPASSWORD@your.icecast.server.com:8000/mpr.mp3}}' --sout-shout-mp3 --sout-shout-name="MPR MP3 Restream" --sout-shout-description="Restreaming of MPR" --sout-shout-url="http://minnesota.publicradio.org" --sout-shout-genre="Liberal Tripe" --loop

    Assuming you have already properly set up your Icecast server, you should now have a mountpoint running the stream you have just created.

    Note that VLC seems to have problems parsing some ASX playlist files. You may need to download the ASX file with wget to investigate what the actual stream URL is. For example, the stream above came from "http://minnesota.publicradio.org/tools/play/streams/classical.asx", which had these contents:

    <ASX version="3.0">
       <ABSTRACT>The Windows Media Stream for MPR's Classical Music Service</ABSTRACT>
       <TITLE>MPR Classical Windows Stream</TITLE>
       <AUTHOR>Minnesota Public Radio</AUTHOR>
       <COPYRIGHT>2009 Minnesota Public Radio</COPYRIGHT>
       <MOREINFO HREF = "http://minnesota.publicradio.org" />
       <ENTRY>
          <TITLE>MPR Classical Windows Stream Underwriter</TITLE>
          <COPYRIGHT>2009 Minnesota Public Radio</COPYRIGHT>
          <REF HREF="http://ondemand2.publicradio.org/ondemand/joinnow.wma"/>
          <BANNER HREF="http://www.publicradio.org/applications/underwriters/images/prepend/content/joinnow.gif">
              <MOREINFO HREF = "https://contribute.publicradio.org/"></MOREINFO>
          </BANNER>
       </ENTRY>
       <ENTRY>
          <TITLE>MPR Classical Windows Stream</TITLE>
          <COPYRIGHT>2009 Minnesota Public Radio</COPYRIGHT>
          <REF HREF="http://classicalstream2.publicradio.org/classical"/>
          <BANNER HREF="http://www.publicradio.org/applications/underwriters/images/prepend/content/joinnow.gif">
              <MOREINFO HREF = "https://contribute.publicradio.org/"></MOREINFO>
          </BANNER>
       </ENTRY>
    </ASX>

    As you can see, the first item in the playlist is NPR's obligatory call (**cough** commercial **cough**) for donations (http://ondemand2.publicradio.org/ondemand/joinnow.wma). The second is your actual stream URL (http://classicalstream2.publicradio.org/classical). You'll want to use the stream URL in your VLC command.

    Also, I have seen cases where VLC pukes on some ASF streams. Though I haven't confirmed this, it appears to be a bug with downsampling/resampling (http://mailman.videolan.org/pipermail/vlc-devel/2009-February/056823.html). In these cases, you may need to look that the 1.0.0 prerelease versions, which may not be available on your distro release (Fedora, for example, doesn't have it until 11). Good luck!

    UPDATE 10/27/09: It would appear that the precompiled RPMs offered on the VLC site for 1.0 or higher do not contain support for shout output. Not a big deal. Just download the source RPM (e.g., from http://download1.rpmfusion.org/free/fedora/development/source/SRPMS/) install the sources (rpm -Uvh vlc-1.0.3-0.1_rc.fc12.src.rpm), and edit the vlc.spec file (usually found in ~/rpmbuild/SPECS/). Look for a line that says "--enable-realrtsp \" and add a line below it that says "--enable-shout \". Save and close the file, then run "rpmbuild -ba vlc.spec". After it recompiles, install the updated RPMs (cd ~/rpmbuild/RPMS/x86_64/ ; yum --nogpgcheck reinstall vlc-core-1.0.3-0.1_rc.fc11.x86_64.rpm vlc-1.0.3-0.1_rc.fc11.x86_64.rpm). Make sure to alter the above paths to reflect your architecture, Fedora release, and vlc version.