<?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/category/applications/audio/feed/" rel="self" type="application/rss+xml" />
	<link>http://lindesk.com</link>
	<description>Linux - on the Desktop</description>
	<lastBuildDate>Tue, 19 Jan 2010 05:54:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<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 [...]]]></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 [...]]]></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>7</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 [...]]]></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 &#8216;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>85</slash:comments>
		</item>
		<item>
		<title>mpg123/mpg321 &#8211; The Command Line MP3 Players</title>
		<link>http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/</link>
		<comments>http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/#comments</comments>
		<pubDate>Sun, 24 Feb 2008 20:07:20 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Command Line]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[mpg123]]></category>
		<category><![CDATA[mpg321]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[review]]></category>

		<guid isPermaLink="false">http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/</guid>
		<description><![CDATA[So far we looked at the GUI MP3 Players for linux &#8211; like Amarok, Exile, XMMS etc. Most linux users need only that &#8211; but there are some people who want a simpler system &#8211; command line players. The two top players in this area are mpg123 and mpg321. mpg123 mpg123 is a fast, free, [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/terminal/' rel='attachment wp-att-96' title='Terminal'><img src='http://lindesk.com/wp-content/uploads/2008/02/terminal.png' alt='Terminal' class="intro" align="right" /></a></p>
<p class="intro">So far we looked at the GUI MP3 Players for linux &#8211; like <a href="http://lindesk.com/2007/09/amarok-mp3-player/">Amarok</a>, <a href="http://lindesk.com/2008/01/exaile-music-player-for-gtk/">Exile</a>, <a href="http://lindesk.com/2007/09/xmms-x-multimedia-system/">XMMS</a> etc. Most linux users need only that &#8211; but there are some people who want a simpler system &#8211; command line players. The two top players in this area are mpg123 and mpg321.</p>
<h2>mpg123</h2>
<p>mpg123 is a fast, free, minimalist, console MPEG audio player software program for UNIX and Linux operating systems. The development on this project ceased for a long time &#8211; but now it has a new maintainer.</p>
<ul>
<li><a href="http://www.mpg123.de/">mpg123 Homepage</a></li>
<li><a href="http://en.wikipedia.org/wiki/Mpg123">Wikipedia Page</a></li>
</ul>
<h2>mpg321</h2>
<p>mpg321 is a clone of mpg123. </p>
<ul>
<li><a href="http://mpg321.sourceforge.net/">Homepage</a></li>
<li><a href="http://en.wikipedia.org/wiki/Mpg321">Wikipedia Page</a></li>
</ul>
<h3>Installation</h3>
<p>Most distros have mpg321 in their repositories(not all have mpg123) &#8211; so just log in as root and use these commands to install it&#8230;<br />
<code>yum install mpg321</code> &#8211; For RedHat, Fedora, CentOS etc.<br />
OR<br />
<code>apt-get install mpg321</code> &#8211; For Debian, Ubuntu, etc.</p>
<h3>Using mpg321</h3>
<p>Using mpg321 is straight forward. Since it has no GUI, just go to the folder with the song and just execute the command&#8230;</p>
<pre><code class="cli">mpg321 MP3_FILE_NAME</code></pre>
<p>If you want to play all the songs in a folder, you have to create a list of files in that folder. Then you have to specify this list as an argument for the mpg321 command. These commands can get the job done&#8230;</p>
<p>Create a list of all MP3 Files in the current folder&#8230;</p>
<pre><code class="cli">find . -name "*.mp3"|sed 's/\.\///;'|sort>List.lst</code></pre>
<p>Use this list as the play list for mpg321</p>
<pre><code class="cli">mpg123 --list List.lst</code></pre>
<h3>Why Use Command Line Players?</h3>
<p>If we have a number of shiny GUI players, why should one use a command line player? Unless you are an anti-GUI command line guru, chances are you don&#8217;t need it. But still, it has its uses.</p>
<p>For example, if you have to restart the X Server often for some reason, then mpg321 is the best player for you. All other player will stop playing when X server is down.</p>
<p>This actually happend to me &#8211; when I bought my <a href="http://blog.binnyva.com/2007/10/dual-monitors-the-realization-of-a-dream/">second LCD screen</a>, it took me some time to configure it. And that meant editing the <code>xorg.conf</code> file and restarting the X Server to see if it worked. At that time, I opened a virtual terminal(Ctrl+Alt+F1) and opened mpg321 with a bunch of MP3s in the list. It kept playing even if the X server is down. This is propably the reason that I was still sane after around six hours of XOrg configuration. <img src='http://lindesk.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2008/02/mpg123mpg321-the-command-line-mp3-players/feed/</wfw:commentRss>
		<slash:comments>10</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 [...]]]></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>
		<item>
		<title>RhythmBox &#8211; Gnome Music Player</title>
		<link>http://lindesk.com/2007/12/rhythmbox-gnome-music-player/</link>
		<comments>http://lindesk.com/2007/12/rhythmbox-gnome-music-player/#comments</comments>
		<pubDate>Sun, 02 Dec 2007 17:34:16 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Gnome]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[rhythmbox]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://lindesk.com/2007/12/rhythmbox-gnome-music-player/</guid>
		<description><![CDATA[Rhythmbox Music Player is a music player and library for tagged files, that support various music formats. It was inspired by Apple&#8217;s iTunes. Although it is designed to work well under the GNOME Desktop, I had no issues with it in KDE. RhythmBox uses the GStreamer media framework. It is currently under active development. Advantages [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://lindesk.com/wp-content/uploads/2008/03/rhythmbox.png' alt='RhythmBox Logo' align="right" /></p>
<p class="intro"><a href="http://www.gnome.org/projects/rhythmbox/">Rhythmbox</a> Music Player is a music player and library for tagged files, that support various music formats. It was inspired by Apple&#8217;s iTunes. Although it is designed to work well under the GNOME Desktop, I had no issues with it in KDE. RhythmBox uses the GStreamer media framework. It is currently under active development.</p>
<p><a href="http://en.wikipedia.org/wiki/Rhythmbox"><img src="http://upload.wikimedia.org/wikipedia/en/thumb/3/32/Rhythmbox_0.11.2.png/300px-Rhythmbox_0.11.2.png" /></a></p>
<h2>Advantages</h2>
<dl>
<dt>Clean Look</dt>
<dd>While other players aim to make their software flashy and full of features, RhythmBox went for simplicity. The inferface is very direct and easy to use.</dd>
<dt>Browse Mode</dt>
<dd>This is an easy way to browse through a large music collection.</dd>
<dt>Global Shortcut Available</dt>
<dd>I don&#8217;t know how &#8211; but Global Shortcuts are available. There is no option for it &#8211; but one of my global shortcuts &#8211; Ctrl+Alt+Home for Play/Pause works.</dd>
</dl>
<h2>Disadvantages</h2>
<dl>
<dt>Music Library</dt>
<dd>All your music must be within one folder if you want to use RhythmBox&#8217;s Music Library. You can set only one folder as the &#8216;Library Location&#8217;. This option is available at &#8216;Edit &gt; Preferences &gt; &#8216;Music&#8217; Tab &gt; Library Location</dd>
<dt>Font Bug</dt>
<dd>When I start RhythmBox, the font of all application becomes one size smaller. I think this is a bug that is limited to KDE &#8211; but still very irritating. The only way to fix this is restart the X Server</dd>
<dt>Play Queue</dt>
<dd>At the top left corner, in the Library column, there is a Option called &#8216;Play Queue&#8217; &#8211; don&#8217;t mistake it for Playlist. This is a Queue of all the songs that must be played. If you try to play any song in that list, that song will jump to the top.</dd>
<dt>Minimize to System Tray</dt>
<dd>To hide the player don&#8217;t close it &#8211; that will quit the application. If you minimize it, it goes to the taskbar &#8211; I want to minimize it to the system tray. To do that, just click on the RhythmBox icon in the system tray. It take a little getting used to &#8211; but a workable method.</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2007/12/rhythmbox-gnome-music-player/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Sound Issue in Fedora 8</title>
		<link>http://lindesk.com/2007/11/sound-issue-in-fedora-8/</link>
		<comments>http://lindesk.com/2007/11/sound-issue-in-fedora-8/#comments</comments>
		<pubDate>Wed, 14 Nov 2007 12:30:24 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://lindesk.com/2007/11/sound-issue-in-fedora-8/</guid>
		<description><![CDATA[Solution for the sound issue in Fedora 8.]]></description>
			<content:encoded><![CDATA[<p><img src='http://lindesk.com/wp-content/uploads/2007/07/kaboodle.png' class="intro" align="right" alt='Music' /></p>
<p class="intro">Today I upgraded my system from Fedora 7 to Fedora 8. The installation process went very smoothly. But once the installation was done, I started the long process of configuring it. That&#8217;s when I ran into the sound issue in Fedora 8 &#8211; and based on the forum posts, so did many others.</p>
<p>Basically, you get this error at KDE startup&#8230;</p>
<pre>Sound Error Informational Message:
Error while initializing the sound driver:
device: default can't be opened for playback (Permission denied)
The sound server will continue, using the null output device
</pre>
<p>You will not be able to play any sound &#8211; amarok will crash if you try to play anything. But if you run system-config-soundcard(or System -&gt; Administration -&gt; Soundcard Detection), you will be able to hear the test sound. That is because you are running it as root.</p>
<h2>Solution 1 &#8211; Console-Kit Service</h2>
<p>Did you turn of Console-Kit and avahi-daemon startup services using system-config-services? If so, go back and re-enable them.</p>
<ul>
<li>Run system-config-services(or System -&gt; Administration -&gt; Services)</li>
<li>Find Console-Kit and enable it</li>
<li>Find avahi-daemon, enable it</li>
<li>Restart the system and see if that fixed the problem.</li>
</ul>
<p>This worked for me &#8211; so I did not try any of the following solutions.</p>
<h2>Solution 2 &#8211; alsa-plugin</h2>
<p>If the first solution did not solve the problem, try removing the pulseaudio plugin for alsa by running this command.</p>
<p><code>yum remove alsa-plugins-pulseaudio</code></p>
<h2>Solution 3 &#8211; Permissions</h2>
<p>If neither of the above work, open <code>/etc/security/console.perms.d/50-default-perms</code> and add this line to the top&#8230;</p>
<p><code>&lt;sound&gt;=/dev/dsp* /dev/snd/*</code></p>
<p>And at the end, add this line&#8230;</p>
<p><code>&lt;console&gt; 0666 &lt;sound&gt; 0600 root</code></p>
<h2>Related Links</h2>
<p>Hopefully, your problems are solved by now. If not, here are some links to help you further&#8230;</p>
<ul>
<li><a href="https://bugzilla.redhat.com/show_bug.cgi?id=292201">Bugzilla Bug 292201: ALSA mixer only usable as root</a></li>
<li><a href="http://home.nyc.rr.com/computertaijutsu/rhsound.html">Fixing Broken Sound in Fedora</a></li>
<li><a href="http://fedoraforum.org/forum/showthread.php?t=171083">Fedora 8 &amp; pulse audio &#8211; nonroot users have no sound Thread</a></li>
<li><a href="http://fedoraguide.info/index.php/Main_Page#Pulse_Audio_Potential_Issues">Pulse Audio Potential Issues</a></li>
</ul>
<p>More about Fedora 8 in the next post.</p>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2007/11/sound-issue-in-fedora-8/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
		<item>
		<title>Banshee &#8211; Music Management and Playback for GNOME</title>
		<link>http://lindesk.com/2007/11/banshee-music-management-and-playback-for-gnome/</link>
		<comments>http://lindesk.com/2007/11/banshee-music-management-and-playback-for-gnome/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 17:44:06 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[Gnome]]></category>

		<guid isPermaLink="false">http://lindesk.com/2007/11/banshee-music-management-and-playback-for-gnome/</guid>
		<description><![CDATA[Banshee is one of the best audio players for Gnome. It has most of the things I want in an MP3 software&#8230; Stays in the system tray Simple interface Media Library Ability to control the player using shortcuts without accessing the player(Multimedia Keys Plugin) Unfortunately, I could not run this software in my system &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://lindesk.com/wp-content/uploads/2007/08/banshee.png' alt='Banshee' class="intro" align="right" /></p>
<p class="intro"><a href="http://banshee-project.org/">Banshee</a> is one of the best audio players for Gnome. It has most of the things I want in an MP3 software&#8230;</p>
<ul>
<li>Stays in the system tray</li>
<li>Simple interface</li>
<li>Media Library</li>
<li>Ability to control the player using shortcuts without accessing the player(Multimedia Keys Plugin)</li>
</ul>
<p>Unfortunately, <strong class="highlight">I could not run this software</strong> in my system &#8211; it is showing a &#8216;No Codec&#8217; error for all the files I tried to play. I tried to fix this problem by myself &#8211; I even tried reinstalling the software. Still no luck. I am sure that is is a configuration error on my part &#8211; I don&#8217;t think it is an issue in banshee.</p>
<p>Anyway, since I could not try out this software, I stop now. If I could fix this issue before my series on <a href="http://lindesk.com/2007/08/mp3-audio-players-in-linux/">MP3 Players for Linux is over</a>, I will come back and post the details on this page.</p>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2007/11/banshee-music-management-and-playback-for-gnome/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Audacious Media Player</title>
		<link>http://lindesk.com/2007/10/audacious-media-player/</link>
		<comments>http://lindesk.com/2007/10/audacious-media-player/#comments</comments>
		<pubDate>Fri, 26 Oct 2007 17:26:46 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Audio]]></category>

		<guid isPermaLink="false">http://lindesk.com/2007/10/audacious-media-player/</guid>
		<description><![CDATA[Audacious is not among the &#8216;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 this article, I installed it &#8211; and I liked it. I even considered switching from amaroK to Audacious. Most of the features I wanted [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://lindesk.com/2007/08/mp3-audio-players-in-linux/audacious/' rel='attachment wp-att-59' title='Audacious'><img src='http://lindesk.com/wp-content/uploads/2007/08/audacious-logo1.png' alt='Audacious' /></a></p>
<p class="intro"><a href="http://audacious-media-player.org/">Audacious</a> is not among the &#8216;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 this article, I installed it &#8211; and I liked it. I even considered switching from <a href="http://lindesk.com/2007/09/amarok-mp3-player/">amaroK</a> to Audacious.</p>
<p><img src='http://lindesk.com/wp-content/uploads/2007/10/audacious_screenshot.png' alt='Audacious Screenshow' /></p>
<p>Most of <a href="http://lindesk.com/2007/09/features-i-look-for-in-an-mp3-software/">the features I wanted in an MP3 player</a> is present in Audacious. They where not turned on by default &#8211; but it was easy enough to enable the plugin.</p>
<h2>Advantages</h2>
<dl>
<dt>System Tray</dt>
<dd>Just enable the plugin called Status Icon. And the system tray hover information is one of the best I have seen yet&#8230;<br />
<img src='http://lindesk.com/wp-content/uploads/2007/10/audacious_hover.png' alt='Audacious Hover' />
</dd>
<dt>Global Hotkeys</dt>
<dd>This feature is available using a plugin called Global Hotkeys(for version 1.4+). I have not managed to install this plugin yet &#8211; so I cannot comment on it.</dd>
<dt>OSD</dt>
<dd>There is a OSD plugin that shows the name of the song on song change.</dd>
</dl>
<h2>Disadvantages</h2>
<p>However, there are some problems as well&#8230;</p>
<dl>
<dt>No Media Library</dt>
<dd>I don&#8217;t expect Audacious to get one without sacrificing the &#8216;simple/easy to use&#8217; advantage.</dd>
<dt>Playlist Scrolling is Slow</dt>
<dd>I noticed that the the playlist does not scroll smoothly if you have a lot of songs. This may be problem in just my system &#8211; could anyone confirm this?</dd>
</dl>
<h2>Conclusion</h2>
<p>I am forced to conclude that Audacious is better than <a href="http://lindesk.com/2007/09/xmms-x-multimedia-system/">XMMS</a> for those who are searching for a simple MP3 software. But for those searching for more advanced features, amaroK might be a better choice &#8211; and for that reason I as sticking with Amarok.</p>
<h2>Related Sites</h2>
<ul>
<li><a href="http://audacious-media-player.org/">Official Site</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>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2007/10/audacious-media-player/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

