<?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; mp3</title>
	<atom:link href="http://lindesk.com/tag/mp3/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>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, minimalist, console [...]]]></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>9</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>
		<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

Clean Look
While [...]]]></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>10</slash:comments>
		</item>
		<item>
		<title>5 Improvements for Amarok</title>
		<link>http://lindesk.com/2007/09/5-improvements-for-amarok/</link>
		<comments>http://lindesk.com/2007/09/5-improvements-for-amarok/#comments</comments>
		<pubDate>Sun, 30 Sep 2007 17:19:44 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[amarok]]></category>
		<category><![CDATA[improvement]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://lindesk.com/2007/09/5-improvements-for-amarok/</guid>
		<description><![CDATA[
My favorite music player in Linux is amaroK. But, despite all its advantages, there are some areas where amaroK could have done better.
Show Current Song Title on Mouseover
Currently, there is no way I can know what song is playing without opening the application window. In the XMMS Status docklet, the name of the current song [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://lindesk.com/wp-content/uploads/2007/08/amarok_logo.png' alt='Amarok' class="intro" align="right" /></p>
<p class="intro">My favorite music player in Linux is <a href="http://amarok.kde.org/">amaroK</a>. But, despite all its advantages, there are some areas where amaroK could have done better.</p>
<h2>Show Current Song Title on Mouseover</h2>
<p>Currently, there is no way I can know what song is playing without opening the application window. In the <a href="http://lindesk.com/2007/09/xmms-x-multimedia-system/">XMMS Status docklet</a>, the name of the current song will popup if you hover over the system tray icon for some time. Although amaroK shows the song title on song change, it is not shown on mouseover.</p>
<p>Update: amarok has this feature &#8211; but some bug in Fedora Core disables it.</p>
<h2>Repeat Loop for Artist</h2>
<p>amaroK has three different repeat modes&#8230;</p>
<ul>
<li>Repeat entire playlist</li>
<li>Repeat current album</li>
<li>Repeat current track</li>
</ul>
<p><img src='http://lindesk.com/wp-content/uploads/2007/09/amarok_repeat.png' alt='amaroK Repeat Modes' /></p>
<p>I would like another repeat loop &#8211; &#8216;Repeat Current Artist&#8217;</p>
<h2>Repeat loop for all queued tracks</h2>
<p>Yet another repeat loop I would like is &#8216;Repeat all Queued Tracks&#8217;.</p>
<h2>Less Processor Intensive</h2>
<p>One of my main complaints about amaroK is that it is kinda processor intensive. Even when the application is minimized to the system tray, amaroK is at the top in the list of the &#8216;top&#8217; command. I am not sure that anything can be done about this &#8211; decoding MP3 involves a bit of crunching.</p>
<h2>Songs must start from the beginning on application launch</h2>
<p>Amarok has a feature called &#8216;Resume playback on start&#8217; &#8211; if it is enabled, amaroK will automatically start playing the last played song on startup. The problem is that the song don&#8217;t begin at the beginning &#8211; it start from the point at which we quit last time. If you quit amaroK at the middle of a song, the next time you start amaroK, it will automatically start playing from the beginning of that song.</p>
<p>This is a very useful feature &#8211; I have it enabled. However, I want the song to start from the beginning.</p>
<p>If you want to enable this feature, it can be found here&#8230;</p>
<p>Settings &gt; Configure Amarok &gt; Playback &gt; Resume playback on start</p>
<p>That&#8217;s my list for now &#8211; do you want to add anything to this list? Leave it in the comment section.</p>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2007/09/5-improvements-for-amarok/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Amarok MP3 Player</title>
		<link>http://lindesk.com/2007/09/amarok-mp3-player/</link>
		<comments>http://lindesk.com/2007/09/amarok-mp3-player/#comments</comments>
		<pubDate>Sun, 23 Sep 2007 17:54:50 +0000</pubDate>
		<dc:creator>BinnyVA</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Audio]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[amarok]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://lindesk.com/2007/09/amarok-mp3-player/</guid>
		<description><![CDATA[
amaroK is currently the player of my choice &#8211; it rocks. Everything I ever wanted in a MP3 Player and more.
Global Shortcuts
I must be able to control some functions in the player like Play/Pause, Next/Previous song etc. with the keyboard without having to open the software. For example, you are banging away at your keyboard [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://amarok.kde.org/' title='Amarok'><img src='http://lindesk.com/wp-content/uploads/2007/08/amarok_logo.png' class="intro" align="right" alt='Amarok' /></a></p>
<p class="intro">amaroK is currently the player of my choice &#8211; it rocks. Everything I ever wanted in a MP3 Player and more.</p>
<h2>Global Shortcuts</h2>
<p>I must be able to control some functions in the player like Play/Pause, Next/Previous song etc. with the keyboard <strong class="highlight">without having to open the software</strong>. For example, you are banging away at your keyboard creating the next big thing. Suddenly someone calls you &#8211; but you can&#8217;t make out what they are trying to say because you are playing music at volumes that makes it audible to a deaf man halfway round the world. Now you have to open up the player, find the pause button(in some winamp skins, they are nearly impossible to find), pause the song and then try to listen to what someone was screaming about.</p>
<p>Wouldn&#8217;t it be great if you could just press a keyboard combination from any app and your player pauses? Winamp(version 5 onwards) had this feature if you enabled a plugin called Global Hotkeys. amaroK supports this feature natively &#8211; amarok-&gt;Settings-&gt;Configure Global Shortcuts.</p>
<h2>Stays in the System Tray</h2>
<p>Another must have feature &#8211; when I listen to music I don&#8217;t want to see the application that plays it. I don&#8217;t want to see some any stupid visualizations. I don&#8217;t want to see any dancing pixies. In short, all I want from a player is hear the music &#8211; not play some animation that&#8217;s eating my CPU cycles.</p>
<p>The best way to make sure of this is if the app stays in the system tray(or status bar). And amaroK does that. Some basic operation(play/pause, stop, etc.) are available from the right click menu of amaroK icon in the system tray.</p>
<p>There is also a hidden feature &#8211; just bring you mouse over the amaroK icon in the system tray any scroll the mouse wheel down &#8211; this reduces the volume!</p>
<p><img src='http://lindesk.com/wp-content/uploads/2007/09/amarok_volume.png' alt='amarok Volume' /></p>
<p>But I have one complaint about that &#8211; there is no way I can know what song is playing. In the <a href="http://lindesk.com/2007/09/xmms-x-multimedia-system/">XMMS Status docklet</a>, the name of the currently song will popup if you hover over the icon for some time. That is not possible in AmaroK.</p>
<p><img src='http://lindesk.com/wp-content/uploads/2007/09/xmms_status_docklet.png' alt='XMMS Status Docklet' /></p>
<p>Update: Amarok has this feature &#8211; but in Fedora, its disabled. Some bug, I guess</p>
<h2>Other Cool Features&#8230;</h2>
<ul>
<li>Media Library</li>
<li>Fetches Lyrics/Artist Info from the Web</li>
<li>Supports Podcasts</li>
<li>Inbuilt Bulk MP3 Tag editor</li>
<li>Able to access MP3 players(the hardware players &#8211; you know &#8211; like iPod)</li>
</ul>
<h2>For More Information</h2>
<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>
]]></content:encoded>
			<wfw:commentRss>http://lindesk.com/2007/09/amarok-mp3-player/feed/</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>
