<?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>Lindesk &#187; Audio</title>
	<atom:link href="http://lindesk.com/tag/audio/feed/" rel="self" type="application/rss+xml" />
	<link>http://lindesk.com</link>
	<description>Linux - on the Desktop</description>
	<lastBuildDate>Tue, 23 Jun 2009 14:03:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MPD &#8211; Music Player Daemon</title>
		<link>http://lindesk.com/2008/04/mpd-music-player-daemon/</link>
		<comments>http://lindesk.com/2008/04/mpd-music-player-daemon/#comments</comments>
		<pubDate>Mon, 14 Apr 2008 18:30:58 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[daemon]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[mpd]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[player]]></category>

		<guid isPermaLink="false">http://lindesk.com/?p=105</guid>
		<description><![CDATA[MPD is not for everyone.

Before continuing into the article, a word of warning. MPD is not for everyone. If you are a casual desktop linux user with zero geek genes, stay away from this player. There are many other simpler players for you.

But then again, &#8216;casual desktop linux user&#8217; &#8211; that sounds like a contradiction [...]]]></description>
			<content:encoded><![CDATA[<blockquote class="pullquote"><p>MPD is not for everyone.</p>
</blockquote>
<p class="intro">Before continuing into the article, a word of warning. <strong class="highlight">MPD is not for everyone.</strong> If you are a casual desktop linux user with zero geek genes, stay away from this player. There are <a href="http://lindesk.com/2008/03/top-10-linux-mp3-players/">many other simpler players</a> for you.</p>
<p><a href='http://lindesk.com/wp-content/uploads/2008/04/mpd_logo.png'><img src="http://lindesk.com/wp-content/uploads/2008/04/mpd_logo.png" alt="" title="Mpd Logo" width="359" height="156" class="intro alignright size-full wp-image-106" /></a></p>
<p>But then again, &#8216;casual desktop linux user&#8217; &#8211; that sounds like a contradiction in terms. The very fact that you are reading this means that you are a geek.</p>
<h2>Getting Started with MPD</h2>
<p>Setting up MPD is not as simple as other music players.</p>
<h3>Installation</h3>
<p>To see MPD in action, first we have to install MPD &#8211; and a client. I installed the following&#8230;</p>
<ul>
<li>MPD server</li>
<li>MPC &#8211; A command line MPD client</li>
<li>gmpc &#8211; A GUI client for Gnome</li>
</ul>
<p>In a RedHat based system, you can install these using the command&#8230;</p>
<p><code>yum install mpd mpc gmpc</code></p>
<h3>Configuration</h3>
<p>Here is where it starts to get a bit confusing. MPD don&#8217;t have a pretty GUI to go along with it. It has to be configured using a text file. Create a file &#8216;.mpdconf&#8217; in your home folder and enter the following in it&#8230;</p>
<pre><code class="cli">
port					"6600"
music_directory         "~/Songs"
playlist_directory      "~/.mpd/playlists"
db_file                 "~/.mpd/mpd.db"
log_file                "~/.mpd/mpd.log"
error_file              "~/.mpd/mpd.error"
</code></pre>
<p>The &#8216;music_directory&#8217;(&#8220;~/Songs&#8221; in our example) must point to the folder where you keep your music. If you have your music in multiple folders then I cannot help you. MPD was designed with just one music root directory in mind.</p>
<p>It is a good idea to create the playlist folder now &#8211; it will prevent errors later on. To do that run the command&#8230;</p>
<p><code>mkdir -p ~/.mpd/playlists</code></p>
<p>Next run these commands&#8230;</p>
<pre><code class="cli">mpd --create-db
mpc update
mpc add /
mpc play</code></pre>
<p>If all went well, you must be hearing sweet music now. Here is an explanation of the commands we used and their purpose&#8230;</p>
<dl>
<dt>mpd &#8211;create-db</dt>
<dd>This will start the daemon. The &#8216;&#8211;create-db&#8217; argument will read the contents of the root music directory and add the Music files to a text database. You should see the list of files being added into the DB. This may take some time to complete &#8211; based on size of your music collection.</dd>
<dt>mpc update</dt>
<dd>The command used here is &#8216;mpc&#8217; &#8211; not &#8216;mpd&#8217;. We are using a command line client now. This command scans the root music directory for updates.</dd>
<dt>mpc add /</dt>
<dd>This command will add all the files in the music directory to the current playlist. Please note that the &#8216;/&#8217; here means root music directory &#8211; and not the global linux root.</dd>
<dt>mpc play</dt>
<dd>This will start playing the files in the current playlist.</dd>
</dl>
<h2>GUI Clients</h2>
<p>There are many GUI clients for MPD &#8211; the ones I would recommend are&#8230;</p>
<ul>
<li>Gnome Music Player Client(gmpc)</li>
<li>Sonata</li>
</ul>
<p>Once the mpd daemon is up and running, just open these clients and click on the connect button to control the daemon using these clients.</p>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2008/04/mpd-music-player-daemon/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Listen &#8211; Gtk MP3 Player</title>
		<link>http://lindesk.com/2008/03/listen-gtk-mp3-player/</link>
		<comments>http://lindesk.com/2008/03/listen-gtk-mp3-player/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 18:09:22 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[listen]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://lindesk.com/2008/03/listen-gtk-mp3-player/</guid>
		<description><![CDATA[
I expected my MP3 player series will end with the last post &#8211; but the comments pointed to some other players. Two players stood out &#8211; so I decided that I will review them as well. The first one is Listen. Its a Gtk player written in Python.
Features

Supports Shoutcast Webradio
Supports Podcast
Multiple Display modes
Wikipedia Integration
Native Lyrics [...]]]></description>
			<content:encoded><![CDATA[<p><img class="intro" align="right" src='http://lindesk.com/wp-content/uploads/2008/03/listen-logo.png' alt='Listen Logo' /></p>
<p class="intro">I expected my MP3 player series will end with the <a href="http://lindesk.com/2008/03/top-10-linux-mp3-players/">last post</a> &#8211; but the comments pointed to some other players. Two players stood out &#8211; so I decided that I will review them as well. The first one is <a href="http://www.listen-project.org/">Listen</a>. Its a Gtk player written in Python.</p>
<h2>Features</h2>
<ul>
<li>Supports Shoutcast Webradio</li>
<li>Supports Podcast</li>
<li>Multiple Display modes</li>
<li>Wikipedia Integration</li>
<li>Native Lyrics Support</li>
</ul>
<p><img src='http://lindesk.com/wp-content/uploads/2008/03/listen-screenshot.png' alt='Listen Screenshot' /></p>
<h2>Disadvantages</h2>
<dl>
<dt>No Global Shortcuts</dt>
<dd>At least, none that I could find.</dd>
<dt>&#8220;Interesting&#8221; Layout</dt>
<dd>The layout is kinda different from the standand layout of <a href="http://lindesk.com/2007/09/amarok-mp3-player/">amaroK</a>, <a href="http://lindesk.com/2008/01/exaile-music-player-for-gtk/">Exaile</a>, <a href="http://lindesk.com/2007/12/rhythmbox-gnome-music-player/">Rythmbox</a> etc. I am still getting used to it. But once you get the hang of it, it could turn out to be a better system than the one that the other players use.</dd>
</dl>
<h2>Advantages</h2>
<dl>
<dt>OSD</dt>
<dd>Shows up on mouse hover and track change.</dd>
<dt>Tray Icon</dt>
<dd>Supports play/pause with middle click.</dd>
<dt>Music Library</dt>
<dd>Listen has a music library &#8211; but it supports only a single folder as its library folder.</dd>
</dl>
<h2>More Information</h2>
<ul>
<li><a href="http://www.listen-project.org/">Listen</a></li>
<li><a href="http://www.listen-project.org/wiki/Features">Listen Features</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2008/03/listen-gtk-mp3-player/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Top 10 Linux MP3 Players</title>
		<link>http://lindesk.com/2008/03/top-10-linux-mp3-players/</link>
		<comments>http://lindesk.com/2008/03/top-10-linux-mp3-players/#comments</comments>
		<pubDate>Fri, 14 Mar 2008 05:53:36 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[top10]]></category>

		<guid isPermaLink="false">http://lindesk.com/2008/03/top-10-linux-mp3-players/</guid>
		<description><![CDATA[
There are no shortage of audio players in Linux. It has everything from command line MP3 players(mpg123) to RAM eating GUI players(like Amarok). With easily available codecs, linux supports almost all available formats.
This is the final post on a series about MP3 Players in linux. This series focuses on dedicated audio players &#8211; not video [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://lindesk.com/wp-content/uploads/2007/07/kaboodle.png' alt='Music' align="right" class="intro" /></p>
<p class="intro">There are no shortage of audio players in Linux. It has everything from command line MP3 players(<a href="http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/">mpg123</a>) to RAM eating GUI players(like <a href="http://lindesk.com/2007/09/amarok-mp3-player/">Amarok</a>). With easily available codecs, linux supports almost all available formats.</p>
<p>This is the final post on a series about MP3 Players in linux. This series focuses on dedicated audio players &#8211; not <a href="http://lindesk.com/2007/05/top-5-video-players-in-linux/">video players</a> that can handle audio as well(like mplayer). Without further ado, presenting the top 10 Linux MP3 players&#8230;</p>
<h2>1. Amarok</h2>
<p><img src="http://lindesk.com/wp-content/uploads/2007/08/amarok_logo.png" alt="Amarok Logo" align="right" /></p>
<p>amaroK is currently the player of my choice &#8211; it rocks. Everything I ever wanted in a MP3 Player and more. It is the clear winner in this field. In my opinion, there is <strong class="highlight">nothing that beats amarok even if you look at Windows and Mac MP3 players as well</strong>.</p>
<ul>
<li><a href="http://lindesk.com/2007/09/amarok-mp3-player/">Amarok MP3 Player</a></li>
<li><a href="http://lindesk.com/2007/10/five-amarok-tips-and-tricks/">Five Amarok Tips and Tricks</a></li>
<li><a href="http://lindesk.com/2007/09/5-improvements-for-amarok/">5 Improvements for Amarok</a></li>
</ul>
<p><a href="http://en.wikipedia.org/wiki/Image:AmaroK_stable.png"><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/AmaroK_stable.png/250px-AmaroK_stable.png" alt="Amarok Linux MP3 Player Screenshot" /></a></p>
<h4>More Information on Amarok MP3 Player</h4>
<ul>
<li><a href="http://amarok.kde.org/">Official AmaroK site</a></li>
<li><a href="http://en.wikipedia.org/wiki/AmaroK">Wikipedia Entry</a></li>
<li><a href="http://amarok.kde.org/blog/">AmaroK Blog</a></li>
</ul>
<h2>2. XMMS</h2>
<p><img src="http://lindesk.com/wp-content/uploads/2007/08/xmms.png" alt="XMMS Logo" align="right" /></p>
<p>A Winamp clone. Simple and user friendly, it is very popular on linux. It does not have a large feature set &#8211; but I am going to give it second place due to its popularity.</p>
<ul>
<li><a href="http://lindesk.com/2007/09/xmms-x-multimedia-system/">XMMS &#8211; X MultiMedia System</a></li>
<li><a href="http://lindesk.com/2007/09/global-hotkeys-for-xmms-using-khotkeys/">Global HotKeys For XMMS using KHotKeys</a></li>
</ul>
<p><img src="http://lindesk.com/wp-content/uploads/2007/09/xmms_screenshot.png" alt="XMMS MP3 Audio Player Screenshot" /></p>
<h4>Official Sites for XMMS Player</h4>
<ul>
<li><a href="http://www.xmms.org/">XMMS</a></li>
<li><a href="http://en.wikipedia.org/wiki/XMMS">XMMS &#8211; Wikipedia</a></li>
</ul>
<h2>3. RhythmBox</h2>
<p><img src="http://lindesk.com/wp-content/uploads/2008/03/rhythmbox.png" alt="RhythmBox Gnome Music Player Logo" align="right" /></p>
<p>Rhythmbox Music Player is a music player and library for tagged files, that support various music formats. It was inspired by Appleâ€™s iTunes. Although it is designed to work well under the GNOME Desktop, I had no issues with it in KDE.</p>
<p><a href="http://lindesk.com/2007/12/rhythmbox-gnome-music-player/">RhythmBox &#8211; Gnome Music Player</a></p>
<p><img src="http://upload.wikimedia.org/wikipedia/en/thumb/3/32/Rhythmbox_0.11.2.png/300px-Rhythmbox_0.11.2.png" alt="RhythmBox Media Player Screenshot" /></p>
<h4>Official Sites</h4>
<ul>
<li><a href="http://www.gnome.org/projects/rhythmbox/">Rhythmbox &#8211; The music management application for GNOME</a></li>
<li><a href="http://en.wikipedia.org/wiki/Rhythmbox">RhythmBox &#8211; Wikipedia</a></li>
</ul>
<h2>4. Exaile</h2>
<p><img src="http://lindesk.com/wp-content/uploads/2008/03/exailelogo-sml.png" alt="Exaile MP3 Player Logo" align="right" /></p>
<p>Exaile is a music player aiming to be similar to KDEâ€™s Amarok, but for GTK+ and written in Python. It incorporates many of the cool things from Amarok (and other media players)</p>
<p><a href="http://lindesk.com/2008/01/exaile-music-player-for-gtk/">Exaile &#8211; Music Player for Gtk+</a></p>
<p><img src="http://lindesk.com/wp-content/uploads/2008/01/exaile.png" alt="Exaile Media Player Screenshot" /></p>
<h4>Official Sites</h4>
<ul>
<li><a href="http://www.exaile.org/">Official Site</a></li>
<li><a href="http://www.linux.com/articles/59380">Review: Exaile Media Player</a></li>
<li><a href="http://linux.wordpress.com/2007/01/08/exaile-media-player/">Exaile Media Player</a></li>
</ul>
<h2>5. Audacious</h2>
<p><img src="http://lindesk.com/wp-content/uploads/2007/08/audacious-logo1.png" alt="Audacious Logo" /></p>
<p>Audacious is not among the &#8217;star media-players&#8217; in Linux &#8211; so many people never try it out. But those who have tried it out like it. For the sake of the article, I installed it &#8211; and I liked it. I even considered switching from amaroK to Audacious.</p>
<p><a href="http://lindesk.com/2007/10/audacious-media-player/">Audacious Media Player</a></p>
<p><img src="http://lindesk.com/wp-content/uploads/2007/10/audacious_screenshot.png" /></p>
<h4>Official Sites</h4>
<ul>
<li><a href="http://audacious-media-player.org/">Audacious</a></li>
<li><a href="http://audacious-media-player.org/index.php?title=Features">Features of Audacious</a></li>
<li><a href="http://en.wikipedia.org/wiki/Audacious_Media_Player">Audacious Media Player</a></li>
</ul>
<h2>6. Banshee</h2>
<p><img src="http://lindesk.com/wp-content/uploads/2007/08/banshee.png" alt="Banshee Music Player Logo" align="right" /></p>
<p>Banshee is an MP3 players for Gnome. You can import, organize, play, and share your music using Banshee&#8217;s simple, powerful interface.</p>
<p><a href="http://lindesk.com/2007/11/banshee-music-management-and-playback-for-gnome/">Banshee &#8211; Music Management and Playback for GNOME</a></p>
<p><a href="http://en.wikipedia.org/wiki/Image:Screenshot-AlbumPic.png"><img src="http://upload.wikimedia.org/wikipedia/en/thumb/f/f0/Screenshot-AlbumPic.png/250px-Screenshot-AlbumPic.png" alt="Banshee MP3 Player Screenshot" /></a></p>
<h4>Banshee Official Sites</h4>
<ul>
<li><a href="http://banshee-project.org/Main_Page">Banshee</a></li>
<li><a href="http://en.wikipedia.org/wiki/Banshee_%28music_player%29">Banshee (music player)</a></li>
</ul>
<h2>7. SongBird</h2>
<p><img src="http://lindesk.com/wp-content/uploads/2007/08/songbird.png" alt="SongBird MP3 Software Logo" align="right" /></p>
<p>SongBird is an MP3 player built on the XUL framework. It&#8217;s a desktop media player mashed-up with the Web.</p>
<p><a href="http://lindesk.com/2007/12/songbird-the-firefox-of-mp3-players/">SongBird &#8211; The Firefox of MP3 Players</a></p>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/94/Songbird_screenshot.png/250px-Songbird_screenshot.png" alt="Songbird Screenshot" /></p>
<h4>Official Sites</h4>
<ul>
<li><a href="http://www.songbirdnest.com/">SongBird Official Site</a></li>
<li><a href="http://en.wikipedia.org/wiki/Songbird_%28software%29">Songbird (software)</a></li>
</ul>
<h2>8. Juk</h2>
<p><img src="http://lindesk.com/wp-content/uploads/2007/08/juk.png" alt="Juk MultiMedia Player Logo" align="right" /></p>
<p>An audio jukebox that supports collections of MP3, Ogg Vorbis and FLAC files. It is a part of the kdemultimedia package.</p>
<p><a href="http://developer.kde.org/~wheeler/juk.html">Juk</a></p>
<p><br clear="both" /></p>
<h2>9. mpg123/mpg321</h2>
<p>mpg123 is a fast, free, minimalist, console MPEG audio player software program for UNIX and Linux operating systems.</p>
<p><a href="http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/">mpg123/mpg321 &#8211; The Command Line MP3 Players</a></p>
<h4>Official Sites</h4>
<ul>
<li><a href="http://www.mpg123.de/">mpg123 Homepage</a></li>
<li><a href="http://en.wikipedia.org/wiki/Mpg123">mpg123 Wikipedia Page</a></li>
<li><a href="http://mpg321.sourceforge.net/">mpg321 Homepage</a></li>
<li><a href="http://en.wikipedia.org/wiki/Mpg321">mpg321 Wikipedia Page</a></li>
</ul>
<h2>10. Other MP3 Players and Media Software&#8230;</h2>
<p>Instead of putting the last MP3 Player here, I am going to list the MP3 software that did not make it to the list&#8230;</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Beep_Media_Player">Beep Media Player</a></li>
<li><a href="http://wiki.xmms2.xmms.se/index.php/Main_Page">X-platform Music Multiplexing System 2 &#8211; XMMS2</a></li>
<li><a href="http://snackamp.sourceforge.net/">SnackAmp</a></li>
<li><a href="http://decibel.silent-blade.org/">Decibel Audio Player</a></li>
<li><a href="http://aqualung.factorial.hu/">Aqualung</a></li>
<li><a href="http://cactus.hey-you-freaks.de/index.php">Cactus Jukebox</a></li>
</ul>
<p>So, which is your favorite MP3 Player? Leave a comment&#8230;</p>
<p>Update: I reviewed two more players&#8230;</p>
<ul>
<li><a href="http://lindesk.com/2008/03/listen-gtk-mp3-player/">Listen &#8211; Gtk MP3 Player</a></li>
<li><a href="http://lindesk.com/2008/04/mpd-music-player-daemon/">MPD &#8211; Music Player Daemon</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2008/03/top-10-linux-mp3-players/feed/</wfw:commentRss>
		<slash:comments>75</slash:comments>
		</item>
		<item>
		<title>Exaile &#8211; Music Player for Gtk+</title>
		<link>http://lindesk.com/2008/01/exaile-music-player-for-gtk/</link>
		<comments>http://lindesk.com/2008/01/exaile-music-player-for-gtk/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 17:54:23 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[exaile]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://lindesk.com/2008/01/exaile-music-player-for-gtk/</guid>
		<description><![CDATA[
Exaile an amarok clone for Gnome &#8211; and I have to admit &#8211; I am impressed.
Exaile is a music player aiming to be similar to KDE&#8217;s Amarok, but for GTK+ and written in Python. It incorporates many of the cool things from Amarok (and other media players) like automatic fetching of album art, handling of [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://lindesk.com/wp-content/uploads/2008/03/exailelogo-sml.png' alt='Exaile Logo' align="right" class="intro" /></p>
<p class="intro"><a href="http://exaile.org/">Exaile</a> an <a href="http://lindesk.com/2007/09/amarok-mp3-player/">amarok</a> clone for Gnome &#8211; and I have to admit &#8211; I am impressed.</p>
<blockquote cite="http://exaile.org/"><p>Exaile is a music player aiming to be similar to KDE&#8217;s Amarok, but for GTK+ and written in Python. It incorporates many of the cool things from Amarok (and other media players) like automatic fetching of album art, handling of large libraries, lyrics fetching, artist/album information via Wikipedia, Last.fm submission support, and optional iPod support via a plugin.</p></blockquote>
<p><a href="http://en.wikipedia.org/wiki/Image:Exaile_on_Ubuntu.png"><img src='http://lindesk.com/wp-content/uploads/2008/01/exaile.png' alt='Exaile Screenshot' /></a></p>
<h2>Features</h2>
<p>It has many features that make amarok great&#8230;</p>
<ul>
<li>Automatic fetching of album art</li>
<li>Handling large music libraries</li>
<li>Lyrics fetching</li>
<li>Fetches Artist/Album information from Wikipedia</li>
</ul>
<p>And some features that amarok does not have&#8230;</p>
<ul>
<li>Tabbed playlist interface</li>
<li>Song Blacklist Manager</li>
</ul>
<h2>Disadvantages</h2>
<ul>
<li>I could not find the Global Hotkeys feature</li>
</ul>
<h2>Download</h2>
<p>If you want to try exaile, you can <a href="http://exaile.org/downloads">download exaile</a> and install it yourself.</p>
<h2>Related Links</h2>
<ul>
<li><a href="http://www.exaile.org/">Official Site</a></li>
<li><a href="http://www.linux.com/articles/59380">Review: Exaile Media Player</a></li>
<li><a href="http://linux.wordpress.com/2007/01/08/exaile-media-player/">Exaile Media Player</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2008/01/exaile-music-player-for-gtk/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Songbird &#8211; The Firefox of MP3 Players</title>
		<link>http://lindesk.com/2007/12/songbird-the-firefox-of-mp3-players/</link>
		<comments>http://lindesk.com/2007/12/songbird-the-firefox-of-mp3-players/#comments</comments>
		<pubDate>Tue, 11 Dec 2007 17:21:56 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[songbird]]></category>
		<category><![CDATA[xul]]></category>

		<guid isPermaLink="false">http://lindesk.com/2007/12/songbird-the-firefox-of-mp3-players/</guid>
		<description><![CDATA[I just installed SongBird - an MP3 player built on the XUL framework. It is more integrated with the web than any other player I have seen.]]></description>
			<content:encoded><![CDATA[<p><a href="http://songbirdnest.com/partners"><img src="http://songbirdnest.com/files/images/button_jetpack.png" border="0" alt="Get Songbird" class="intro" align="right" /></a></p>
<p class="intro">I just installed <a href="http://www.songbirdnest.com/">Songbird</a> &#8211; an MP3 player built on the XUL framework. It is more integrated with the web than any other player I have seen. This is what Songbird have to say about themselves&#8230;</p>
<blockquote><p>Songbird is a desktop media player mashed-up with the Web. Songbird is committed to playing the music you want, from the sites you want, on the devices you want, challenging the conventions of discovery, purchase, consumption and organization of music on the Internet.</p>
<p>Songbird is a player and a platform. Like Firefox, Songbird is an open source, Open Web project built on the Mozilla platform. Songbird provides a public playground for Web media mash-ups by providing developers with both desktop and Web APIs, developer resources and fostering Open Web media standards, to wit, an Open Media Web.</p>
</blockquote>
<p><a href="http://upload.wikimedia.org/wikipedia/commons/thumb/9/94/Songbird_screenshot.png/250px-Songbird_screenshot.png"><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/94/Songbird_screenshot.png/250px-Songbird_screenshot.png" /></a></p>
<h2>Advantages</h2>
<h3>Lots of Plugins</h3>
<p>Since Songbird uses the XUL Framework extension development is easy for those who have worked on Mozilla extensions. As a result, <a href="http://addons.songbirdnest.com/">there are a lot of extensions</a> available.</p>
<h3>Web Integration</h3>
<p>This makes support for many features possible &#8211; like&#8230;</p>
<ul>
<li>Podcasts</li>
<li>MP3 Downloads</li>
<li>Online Music Stores</li>
<li>And More&#8230;</li>
</ul>
<h3>Cross Platform</h3>
<p>Songbird works on Windows, Linux and Mac. Makes no difference to me &#8211; but many will find this useful.</p>
<h2>Disadvantages</h2>
<h3>Dark Default Skin</h3>
<p>The default skin(or feather, as its know in Songbird) is too &#8216;flashy&#8217; for my taste. I like simple, easy to use/navigate GUI. The Songbird interface is nothing like that &#8211; at least not for me.</p>
<p>Since the default skin is inspired by iTunes, this might be an advantage for iTunes users. For others, this issue is easily solvable &#8211; just install another skin.</p>
<h3>Bugs</h3>
<p>I downloaded the latest &#8216;Developer Pre-release&#8217; version &#8211; so I found some bugs. But I am sure this will be removed in the stable release.</p>
<h2>Related Links</h2>
<ul>
<li><a href="http://www.songbirdnest.com/">Songbird Official Site</a></li>
<li><a href="http://en.wikipedia.org/wiki/Songbird_(software)">Songbird (software)</a></li>
<li><a href="http://www.songbirdnest.com/">Download Page</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2007/12/songbird-the-firefox-of-mp3-players/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>
