<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>gHacks technology news &#187; songbird</title>
	<atom:link href="http://www.ghacks.net/tag/songbird/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ghacks.net</link>
	<description>A technology blog covering software, mobile phones, gadgets, security, the Internet and other relevant areas.</description>
	<lastBuildDate>Tue, 24 Nov 2009 22:02:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Set up a Linux media server</title>
		<link>http://www.ghacks.net/2009/10/29/set-up-a-linux-media-server/</link>
		<comments>http://www.ghacks.net/2009/10/29/set-up-a-linux-media-server/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 17:51:54 +0000</pubDate>
		<dc:creator>Jack Wallen</dc:creator>
				<category><![CDATA[Advice]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music and Video]]></category>
		<category><![CDATA[Networks]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Tutorials Basic]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[DAAP]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[mp3 server]]></category>
		<category><![CDATA[multimedia server]]></category>
		<category><![CDATA[music server]]></category>
		<category><![CDATA[songbird]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=17860</guid>
		<description><![CDATA[Do you have multiple machines around your house that would like to share a centralized server for multi-media? Having such a server for music allows for consolidation, ease of use, and space saving on client PCs. Of course to many users, the idea of setting up a multi-media server sounds like it would be a [...]]]></description>
			<content:encoded><![CDATA[<p>Do you have multiple machines around your house that would like to share a centralized server for multi-media? Having such a server for music allows for consolidation, ease of use, and space saving on client PCs. Of course to many users, the idea of setting up a multi-media server sounds like it would be a nightmare&#8230;especially on the Linux platform. That couldn&#8217;t be further from the truth.</p>
<p><a title="Firefly Media Server" href="http://www.fireflymediaserver.org/" target="_blank">The Firefly Media Server</a> (formerly mt-daap) is a fast DAAP server that is simple to install and even easier to configure. Firefly resides on a single Linux machine that doesn&#8217;t have to be a powerhouse. In fact, you can install this lightweight server on Ubuntu Server and you&#8217;re almost ready to go. In this article you will see how to do just that &#8211; install and configure Firefly Media Server on Ubuntu Server.</p>
<p><span id="more-17860"></span><strong>Features</strong></p>
<p>The Firefly server has all of the features you will want in a DAAP server:</p>
<ul>
<li><span style="background-color: #ffffff">Supports Unix/POSIX</span></li>
<li><span style="background-color: #ffffff">Beta for Windows in the works</span></li>
<li><span style="background-color: #ffffff">On the fly transcoding of OGG, FLAC, Apple Lossless, and WM</span></li>
<li><span style="background-color: #ffffff">User-created smart playlist support</span></li>
<li><span style="background-color: #ffffff">Integrates with iTunes and many other DAAP-supporting media players</span></li>
<li><span style="background-color: #ffffff">Serve streaming radio stations</span></li>
</ul>
<p><strong>Installation</strong></p>
<p>Since we are installing on a Ubuntu Server, the installation is simple:</p>
<ol>
<li><span style="background-color: #ffffff">Open up a terminal (or just log into your servers&#8217; console)</span></li>
<li><span style="background-color: #ffffff">Issue the command <em>sudo apt-get install mt-daap</em></span></li>
<li><span style="background-color: #ffffff">Enter your user password</span></li>
</ol>
<p>That&#8217;s it. Now it&#8217;s time to set it up.</p>
<p><strong>Configuration file</strong></p>
<p>There is only one configuration file for Firefly: <strong>/etc/mt-daapd.conf</strong>. This file is quite easy to set up. For a basic DAAP server, out of the box, there is really only one option you must configure. If you open up the configuration file look for the line:</p>
<p><em>mp3_dir = /home/media/music</em></p>
<p>This is the line you will need to change to reflect the directory you will serve your media from. For my setup I created a new sub-directory in <strong>/opt </strong>called <strong>music</strong>. Do this with the command:</p>
<p><em>sudo mkdir /opt/media</em></p>
<p>Now you have to make that directory readable by the DAAP server with the command:</p>
<p><em>sudo chmod ug+r -R /opt/media</em></p>
<p>Now all files and sub-directories created with the <strong>/opt/media</strong> directory will have the proper permissions such that the DAAP server can serve up the files.</p>
<p>Of course what you have just set up is a very basic DAAP server. There are a lot of other options within the configuration file you can set up, such as:</p>
<ul>
<li><span style="background-color: #ffffff">servername: This is the name your DAAP server will broadcast. By default the server will be listed as Firefly <em>RELEASE_NUMBER HOSTNAME</em> (Where <em>RELEASE_NUMBER </em>is the release number of the Firefly installation and <em>HOSTNAME</em> is the hostname of the server.)</span></li>
<li><span style="background-color: #ffffff">password protection: This will cause any user attempting to access the DAAP server to have to enter a password in order to see the files. </span></li>
<li><span style="background-color: #ffffff">port: If you need to use a port other than the default (3689), configure it here.</span></li>
<li><span style="background-color: #ffffff">extensions: The file types you want to allow to be served by your DAAP server.</span></li>
<li><span style="background-color: #ffffff">Valid codectypes: These are the configurations for the format conversion. There are already lines for this in the configuration file &#8211; you just have to uncomment the ones you want to add for internal conversion.</span></li>
<li><span style="background-color: #ffffff">rescan_interval: If you want to enable background scanning you need to uncomment this entry and set an interval. This will enable you to add new files without having to restart the DAAP server to pick up the new files. Very handy if you frequently add new files.</span></li>
</ul>
<p>There are other configuration options, but those are the ones you will want to focus on first.</p>
<p><strong>Start the daemon</strong></p>
<p>After your configuration file is complete, go ahead and move your media files into the directory and then start the server with the command:</p>
<p><em>sudo /etc/init.d/mt-daap start</em></p>
<p>With the server up and running you can fire up a DAAP enabled client, like iTunes or Songbird (Note: Songbird requires the addition of a DAAP add on), and you should automatically see the files on the DAAP server.</p>
<p><strong>Final thoughts</strong></p>
<p>Setting up a DAAP server is a great idea for a small internal network where you want to be able to share out a multi-media library. Anyone looking to set this up, and has a Linux server up and running, would do well to give Firefly a try. The simplicity, size, and speed of this server makes it the perfect candidate.</p>

	Tags: <a href="http://www.ghacks.net/tag/daap/" title="DAAP" rel="tag">DAAP</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/mp3-server/" title="mp3 server" rel="tag">mp3 server</a>, <a href="http://www.ghacks.net/tag/multimedia-server/" title="multimedia server" rel="tag">multimedia server</a>, <a href="http://www.ghacks.net/tag/music-server/" title="music server" rel="tag">music server</a>, <a href="http://www.ghacks.net/tag/songbird/" title="songbird" rel="tag">songbird</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/03/songbird-07-rc1-released/" title="Songbird 0.7 RC1 Released (August 3, 2008)">Songbird 0.7 RC1 Released</a> (3)</li>
	<li><a href="http://www.ghacks.net/2009/05/29/itunes-music-server-pulptunes/" title="iTunes Music Server pulpTunes (May 29, 2009)">iTunes Music Server pulpTunes</a> (7)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2007/06/11/view-and-edit-information-about-songs-with-more-tunes/" title="View and Edit information of songs with More Tunes (June 11, 2007)">View and Edit information of songs with More Tunes</a> (1)</li>
	<li><a href="http://www.ghacks.net/2008/08/22/the-complete-media-player-review-part-1-2/" title="The Complete Media Player Review (Part 1) (August 22, 2008)">The Complete Media Player Review (Part 1)</a> (15)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/10/29/set-up-a-linux-media-server/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Songbird 1.2</title>
		<link>http://www.ghacks.net/2009/06/19/songbird-1-2/</link>
		<comments>http://www.ghacks.net/2009/06/19/songbird-1-2/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 18:15:33 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music manager]]></category>
		<category><![CDATA[music player]]></category>
		<category><![CDATA[songbird]]></category>
		<category><![CDATA[songbird 1.2]]></category>
		<category><![CDATA[windows software]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=13719</guid>
		<description><![CDATA[The music manager and player Songbird has been released in version 1.2 recently. Several new and interesting features have been added to the program including the ability to sync the music library with Apple&#8217;s iTunes software, Last.fm radio support or the automatic organization of all music files on a computer system.
Songbird is able to import [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.ghacks.net/wp-content/uploads/2009/06/songbird.jpg" alt="songbird" title="songbird" width="165" height="54" class="alignleft size-full wp-image-13720" />The music manager and player Songbird has been released in version 1.2 recently. Several new and interesting features have been added to the program including the ability to sync the music library with Apple&#8217;s iTunes software, Last.fm radio support or the automatic organization of all music files on a computer system.</p>
<p><a href="http://getsongbird.com/">Songbird</a> is able to import the iTunes music library and playlists if iTunes is installed on the computer system as well. It does not really make sense to use both iTunes and Songbird unless iTunes is used to purchase music and fill music gadgets like the iPod or iPhone as Songbird provides an equal &#8211; and sometimes even advanced &#8211; functionality otherwise.</p>
<p><span id="more-13719"></span><img src="http://www.ghacks.net/wp-content/uploads/2009/06/songbird12-500x360.jpg" alt="songbird12" title="songbird12" width="500" height="360" class="alignnone size-medium wp-image-13722" /></p>
<p>Users who do not use iTunes can import music easily by adding folders from the local computer system. Songbird will automatically recognize tags and categorize the music accordingly. One of the most interesting features is the support for plugins. A handful of plugins are installed by default unless the user opts out of the installation. Plugins expand the functionality of the music manager. Available are for example a Shoutcast Internet radio browser and player, the Last.fm radio player, concert information, various skins and interface enhancements and dozens of additional plugins that sound mighty useful.</p>
<p>Especially the plugins make Songbird a viable alternative to other music players.</p>

	Tags: <a href="http://www.ghacks.net/tag/music/" title="music" rel="tag">music</a>, <a href="http://www.ghacks.net/tag/music-manager/" title="music manager" rel="tag">music manager</a>, <a href="http://www.ghacks.net/tag/music-player/" title="music player" rel="tag">music player</a>, <a href="http://www.ghacks.net/tag/songbird/" title="songbird" rel="tag">songbird</a>, <a href="http://www.ghacks.net/tag/songbird-1-2/" title="songbird 1.2" rel="tag">songbird 1.2</a>, <a href="http://www.ghacks.net/tag/windows-software/" title="windows software" rel="tag">windows software</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/07/04/trout-is-a-lightweight-free-music-player/" title="Trout Is A Lightweight Free Music Player (July 4, 2009)">Trout Is A Lightweight Free Music Player</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/09/26/music-player-jaangle/" title="Music Player Jaangle (September 26, 2009)">Music Player Jaangle</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/10/01/music-manager-the-godfather/" title="Music Manager The Godfather (October 1, 2009)">Music Manager The Godfather</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/08/12/aimp-2-adds-windows-7-jumplist-support/" title="Aimp 2 Adds Windows 7 Jumplist Support (August 12, 2009)">Aimp 2 Adds Windows 7 Jumplist Support</a> (10)</li>
	<li><a href="http://www.ghacks.net/2008/11/20/xbmc-media-center-final/" title="XBMC Media Center Final (November 20, 2008)">XBMC Media Center Final</a> (13)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2009/06/19/songbird-1-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Songbird 0.7 RC1 Released</title>
		<link>http://www.ghacks.net/2008/08/03/songbird-07-rc1-released/</link>
		<comments>http://www.ghacks.net/2008/08/03/songbird-07-rc1-released/#comments</comments>
		<pubDate>Sun, 03 Aug 2008 14:59:19 +0000</pubDate>
		<dc:creator>joshua</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[gstreamer]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[last.fm]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[smart playlists]]></category>
		<category><![CDATA[songbird]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=5829</guid>
		<description><![CDATA[Following a &#8220;Blessed nightly build” which in my testing&#8217;s was unusable, the Songbird developers have released Songbird 0.7 Refresh Candidate 1, which I have been able try out, and have been very impressed by.
I continue to use Windows Media Player and Media Monkey for my music collection management, but I watch progress on Songbird and [...]]]></description>
			<content:encoded><![CDATA[<p>Following a &#8220;Blessed nightly build” which in my testing&#8217;s was unusable, the Songbird developers have released Songbird 0.7 <a href="http://blog.songbirdnest.com/2008/08/01/songbird-07-release-candidate-1-is-available-for-testing/">Refresh Candidate 1</a>, which I have been able try out, and have been very impressed by.</p>
<p>I continue to use Windows Media Player and Media Monkey for my music collection management, but I watch progress on Songbird and like to check out new releases as they become available.</p>
<p>I love the concept behind Songbird and I love what’s been created so far, however it still is a little lacking to become my default media player.</p>
<p>The aim however is for Songbird 1.0 to be out by December this year, with regular updates in the months leading up to then. Development seems to be on schedule and accelerating as Songbird gathers steam.</p>
<p><span id="more-5829"></span>Songbird 0.7 comes with the following changes:</p>
<p><strong>Refreshed UI:</strong> refined look and feel. Essentially an iTunes clone-style interface, however it really is a major improvement on the old ‘Rubber Ducky’ theme, although it may take a few minutes to get used to. I personally love it.<br />
<strong>New setup assistant</strong><br />
<strong>Smart playlists:</strong> Another iTunes inspired feature, but a good one at that. I nice addition to the growing Songbird feature list.<br />
<strong>Last.fm support:</strong>No longer necessary to download a separate plugin for Lastfm integration, it comes built in and scrobbles your library for you.<br />
<strong>GStreamer on all platforms:</strong>&#8220;This is our first cross platform release using GStreamer as our new media core, by default it handles all FLAC playback on Windows/Mac (or you can <a href="http://wiki.songbirdnest.com/Docs/Environment_Variables/Enabling_GStreamer_in_Songbird_0.7">enable</a> GStreamer to handle more codecs)”<br />
<strong>Faster Media scanning and reading:</strong> I definitely noticed this, Songbird is handling my 8000 item library pretty smoothly now.<br />
<strong>Lower memory usage:</strong> Another welcome improvement.</p>
<p>Here is a shot of the new interface:</p>
<p><img src="http://www.ghacks.net/wp-content/uploads/2008/08/songbird.png" alt="songbird" title="songbird" width="450" height="261" class="alignnone size-medium wp-image-5830" /></p>
<p>Incidentally Songbird has created some really simple ways for anyone to theme the program which is great news for the less technical minded people like me.</p>

	Tags: <a href="http://www.ghacks.net/tag/gstreamer/" title="gstreamer" rel="tag">gstreamer</a>, <a href="http://www.ghacks.net/tag/itunes/" title="itunes" rel="tag">itunes</a>, <a href="http://www.ghacks.net/tag/lastfm/" title="last.fm" rel="tag">last.fm</a>, <a href="http://www.ghacks.net/tag/music/" title="music" rel="tag">music</a>, <a href="http://www.ghacks.net/tag/smart-playlists/" title="smart playlists" rel="tag">smart playlists</a>, <a href="http://www.ghacks.net/tag/songbird/" title="songbird" rel="tag">songbird</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/11/09/youscrobble-a-last-fm-and-youtube-mashup-service/" title="YouScrobble A Last.FM And Youtube Mashup Service (November 9, 2009)">YouScrobble A Last.FM And Youtube Mashup Service</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/07/16/winamp-ipod-plugin-2/" title="Winamp iPod Plugin (July 16, 2008)">Winamp iPod Plugin</a> (5)</li>
	<li><a href="http://www.ghacks.net/2008/11/12/track-album-releases-automatically/" title="Track Album Releases Automatically (November 12, 2008)">Track Album Releases Automatically</a> (6)</li>
	<li><a href="http://www.ghacks.net/2008/08/22/the-complete-media-player-review-part-1-2/" title="The Complete Media Player Review (Part 1) (August 22, 2008)">The Complete Media Player Review (Part 1)</a> (15)</li>
	<li><a href="http://www.ghacks.net/2009/02/21/spotify-music-legally-on-demand/" title="Spotify: Music legally on demand (February 21, 2009)">Spotify: Music legally on demand</a> (27)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/08/03/songbird-07-rc1-released/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Songbird &#8211; the extendable Media Player</title>
		<link>http://www.ghacks.net/2008/07/09/songbird-the-extendable-media-player/</link>
		<comments>http://www.ghacks.net/2008/07/09/songbird-the-extendable-media-player/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 21:58:21 +0000</pubDate>
		<dc:creator>joshua</dc:creator>
				<category><![CDATA[Browsing]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[songbird]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/?p=5260</guid>
		<description><![CDATA[The great thing about Firefox (sorry, one of the great things) is that by being open source other developers can use the code as a starting point to create their own more specialised browsers from.
Flock is one very good example and I’ve written about it on gHacks before. Songbird is another, and I have only [...]]]></description>
			<content:encoded><![CDATA[<p>The great thing about <a href="http://www.ghacks.net/tag/firefox/">Firefox</a> (sorry, <em><strong>one</strong> </em>of the great things) is that by being open source other developers can use the code as a starting point to create their own more specialised browsers from.</p>
<p>Flock is one very good example and I’ve written about it on gHacks before. Songbird is another, and I have only just begun using this one myself.</p>
<p>I love the concept behind Songbird, and I like the software itself, unfortunately I think the biggest thing letting it down at this point in time is somewhat slow development. It’s not a criticism, but it does make it harder for Songbird to begin gaining a significant market share.</p>
<p>Version 0.6.1 offers some welcome improvements including support for 10 000 song libraries, performance enhancements, better media library searching, </p>
<p>I’ve been playing around with it for a couple days now, and while I’m not fully converted at this point, I’m seeing a product which looks extremely promising once it matures. If it can gain the kind of community which Firefox has then it has a very real chance of rapidly gaining rapid popularity. It’s greatest strength is that it can be extended like Firefox, although at this point it doesn’t quite have the sheer volume of add-ons, but as I said, creating a community will change this. </p>
<p><span id="more-5260"></span>
<p>Considering the move towards cloud computing, online music streaming and always being connected Songbird is making innovative progress towards the kind of media player for the future. Windows Media Player is woefully inadequate for this kind of use, iTunes is too locked in.</p>
<p>It would be very much in stores like Amazons’ interest for this to happen as Songbird, unlike iTunes, offers song purchase choices to multiple online sites. Couple that with a iTunes-like interface and iPod support and we can say goodbye to DRM songs from Apple!</p>

	Tags: <a href="http://www.ghacks.net/tag/firefox/" title="firefox" rel="tag">firefox</a>, <a href="http://www.ghacks.net/tag/media/" title="media" rel="tag">media</a>, <a href="http://www.ghacks.net/tag/player/" title="player" rel="tag">player</a>, <a href="http://www.ghacks.net/tag/songbird/" title="songbird" rel="tag">songbird</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2008/08/22/the-complete-media-player-review-part-1-2/" title="The Complete Media Player Review (Part 1) (August 22, 2008)">The Complete Media Player Review (Part 1)</a> (15)</li>
	<li><a href="http://www.ghacks.net/2006/12/19/firefox-add-on-to-discover-media-links/" title="Firefox add-on to discover media links (December 19, 2006)">Firefox add-on to discover media links</a> (2)</li>
	<li><a href="http://www.ghacks.net/2008/08/24/complete-music-player-reviews-part-2/" title="Complete Music Player Reviews (Part 2) (August 24, 2008)">Complete Music Player Reviews (Part 2)</a> (12)</li>
	<li><a href="http://www.ghacks.net/2008/03/13/zoom-in-on-images-in-firefox/" title="Zoom In on Images in Firefox (March 13, 2008)">Zoom In on Images in Firefox</a> (6)</li>
	<li><a href="http://www.ghacks.net/2009/04/24/youtube-enhance-youtube-experience/" title="Youtube: Enhance Youtube Experience (April 24, 2009)">Youtube: Enhance Youtube Experience</a> (11)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2008/07/09/songbird-the-extendable-media-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Songbird the ultimate Media Player ?</title>
		<link>http://www.ghacks.net/2006/09/29/songbird-the-ultimate-media-player/</link>
		<comments>http://www.ghacks.net/2006/09/29/songbird-the-ultimate-media-player/#comments</comments>
		<pubDate>Fri, 29 Sep 2006 07:25:18 +0000</pubDate>
		<dc:creator>Martin</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[media-player]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[songbird]]></category>
		<category><![CDATA[video-player]]></category>

		<guid isPermaLink="false">http://www.ghacks.net/2006/09/29/songbird-the-ultimate-media-player/</guid>
		<description><![CDATA[Songbird is a relatively new open source media player that is build from Mozilla and aims to revolutionize the media player market the same way firefox did to the browser market. Songbird is currently available in revision 0.2 "test flight" and runs on Windows 2000+, Linux and Mac just like firefox. Songbird comes with pretty much the same functionality as iTunes and more, due to the fact that it is based on the same core as firefox you can easily use songbird to browse between websites of radio stations, podcasts and blogs. Which means you play the songs and at the same time read what they have written in the same program.]]></description>
			<content:encoded><![CDATA[<p>Songbird is a relatively new open source media player that is build from Mozilla and aims to revolutionize the media player market the same way <a href="http://www.ghacks.net/tag/firefox/">firefox</a> did to the browser market. Songbird is currently available in revision 0.2 &#8220;test flight&#8221; and runs on Windows 2000+, Linux and Mac just like firefox. Songbird comes with pretty much the same functionality as iTunes and more, due to the fact that it is based on the same core as firefox you can easily use songbird to browse between websites of radio stations, podcasts and blogs. Which means you play the songs and at the same time read what they have written in the same program.</p>
<p><img alt="songbird screenshot" title="songbird screenshot" src="http://www.ghacks.net/files/screens/2006/09/songbird1.jpg" /> <img alt="songbird screenshot 2" title="songbird screenshot 2" src="http://www.ghacks.net/files/screens/2006/09/songbird2.jpg" /></p>
<p><span id="more-814"></span>The first start will give you the impression that songbird is big, really big and loaded with features. You see a list of menu items on the left side which consist of your song library, podcasts, radio stations and the like. Clicking on a link loads the website of that service and the available songs in the same window. You have the options to play and download the songs, subscribe to the website, add the song to the playlist or the library while at the same time surfing the website that offers those songs.</p>
<p>A great feature is that you use songbird to play the song which means you can use the controls like pause, play, forward in songbird and don&#8217;t rely on plugins in your browser anymore.</p>
<p>Songbird makes it really easy to find new music or more music from artists that you know about. You can search various services for new files, for example singinfish, google, yahoo and emusic. What you do is enter a search term, hit enter and the website of that service loads the search results. Once loaded songbird again displays two content areas, first the website with the content and at the bottom all the mp3 files that are currently available on that page.</p>
<p>You can drag and drop files to your library, playlist, download them and play them in songbird. All working flawlessly.</p>
<p>There is no iPod interaction as of now, at least none that I was able to detect in the short time that I&#8217;ve been using songbird.</p>
<p>The developers plan to build in some additional features like extensions which work the same way as they are in firefox and thunderbird and the ability to import and burn songs from CD.</p>
<p>Songbird is probably not the best media player when it comes to playing songs, it feels a little bit clumsly and loaded with features but it defiantly is the best when it comes to interaction between web and player. If you are using lots of podcasts, radio stations and the like songbird should be your number one choice.</p>

	Tags: <a href="http://www.ghacks.net/tag/media-player/" title="media-player" rel="tag">media-player</a>, <a href="http://www.ghacks.net/tag/music/" title="music" rel="tag">music</a>, <a href="http://www.ghacks.net/tag/songbird/" title="songbird" rel="tag">songbird</a>, <a href="http://www.ghacks.net/tag/video-player/" title="video-player" rel="tag">video-player</a><br />

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.ghacks.net/2009/08/15/windows-media-player-import-for-winamp/" title="Windows Media Player Import for Winamp (August 15, 2009)">Windows Media Player Import for Winamp</a> (1)</li>
	<li><a href="http://www.ghacks.net/2009/07/07/vlc-media-player-1-0-released/" title="VLC Media Player 1.0 Released (July 7, 2009)">VLC Media Player 1.0 Released</a> (9)</li>
	<li><a href="http://www.ghacks.net/2006/05/04/vlc-media-player/" title="VLC Media Player (May 4, 2006)">VLC Media Player</a> (2)</li>
	<li><a href="http://www.ghacks.net/2009/11/24/splayer-a-new-windows-media-player/" title="SPlayer A New Windows Media Player (November 24, 2009)">SPlayer A New Windows Media Player</a> (8)</li>
	<li><a href="http://www.ghacks.net/2009/06/19/songbird-1-2/" title="Songbird 1.2 (June 19, 2009)">Songbird 1.2</a> (5)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.ghacks.net/2006/09/29/songbird-the-ultimate-media-player/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
