<?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>Calcifer &#187; music</title>
	<atom:link href="http://blog.calcifer.com.ar/tag/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.calcifer.com.ar</link>
	<description></description>
	<lastBuildDate>Sat, 02 Oct 2010 05:32:38 +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://blog.calcifer.com.ar/2008/05/mpd-music-player-daemon/</link>
		<comments>http://blog.calcifer.com.ar/2008/05/mpd-music-player-daemon/#comments</comments>
		<pubDate>Wed, 28 May 2008 17:08:04 +0000</pubDate>
		<dc:creator>lvidarte</dc:creator>
				<category><![CDATA[None]]></category>
		<category><![CDATA[gnu/linux]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://blog.calcifer.com.ar/2008/05/24/mpd-music-player-daemon/</guid>
		<description><![CDATA[Music Player Daemon (MPD) is a music player which allows for remote access from another computer. An example is a headless computer running MPD and using one of the available front ends to control it remotely. It also makes for a good media player for desktop computers, particularly if the user either does not use [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Music Player Daemon (MPD)</strong> is a music player which allows for remote access from another computer. An example is a headless computer running MPD and using one of the available front ends to control it remotely. It also makes for a good media player for desktop computers, particularly if the user either does not use or frequently restarts X.</p>
<p>MPD does not stream audio; all playback occurs on the server where the music files are located. The remote client controls playback from a nearby location.</p>
<p>MPD uses a text file as a database in which to maintain the basic music file information when it is not running. Once the daemon is started, the database is kept completely in-memory and no hard disk access is necessary to look up or search for a song. This database does not allow arbitrary files to be added; music files must be above the music root directory and are only added to the database when the update command is sent to the server.</p>
<p>Install:</p>
<div class="codecolorer-container text " style="overflow:auto;white-space:nowrap;width:435px"><div class="text codecolorer" style="font-family:Monaco,Lucida Console,monospace">apt-get install mpd mpc</div></div>
<p>Edit config file<code>/etc/mpd.conf</code>:</p>
<div class="codecolorer-container text " style="overflow:auto;white-space:nowrap;width:435px"><div class="text codecolorer" style="font-family:Monaco,Lucida Console,monospace">port&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;6600&quot;<br />
music_directory &nbsp; &nbsp; &nbsp; &nbsp; &quot;~/music&quot;<br />
playlist_directory &nbsp; &nbsp; &nbsp;&quot;~/.mpd/playlists&quot;<br />
db_file &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &quot;~/.mpd/mpd.db&quot;<br />
log_file &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;/var/log/mpd/mpd.log&quot;<br />
error_file &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;/var/log/mpd/mpd.error&quot;<br />
user &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&quot;mpd&quot;<br />
bind_to_address &nbsp; &nbsp; &nbsp; &nbsp; &quot;192.168.0.254&quot; #only private interface</div></div>
<p>Create dir and set own:</p>
<div class="codecolorer-container text " style="overflow:auto;white-space:nowrap;width:435px"><div class="text codecolorer" style="font-family:Monaco,Lucida Console,monospace">mkdir -p ~/music/.mpd/playlists<br />
chown -R mpd ~/music</div></div>
<p>Create DB:</p>
<div class="codecolorer-container text " style="overflow:auto;white-space:nowrap;width:435px"><div class="text codecolorer" style="font-family:Monaco,Lucida Console,monospace">/etc/init.d/mpd restart<br />
mpd --create-db</div></div>
<p>Add all music to playlist and&#8230; play:</p>
<div class="codecolorer-container text " style="overflow:auto;white-space:nowrap;width:435px"><div class="text codecolorer" style="font-family:Monaco,Lucida Console,monospace">mpc update<br />
mpc add /<br />
mpc play</div></div>
<h3>References</h3>
<dl>
<dt>mpd –create-db</dt>
<dd>This will start the daemon. The ‘–create-db’ 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 ‘mpc’ &#8211; not ‘mpd’. 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 ‘/’ 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>
<h3>Links</h3>
<ul>
<li><a href="http://www.musicpd.org/" class="linkexternal">Music Player Daemon</a></li>
<li><a href="http://mpd.wikia.com/wiki/Main_Page" class="linkexternal">MPD Wiki</a></li>
<li><a href="http://mpd.wikia.com/wiki/Clients" class="linkexternal">MPD Wiki::Clients</a></li>
<li><a href="http://mpd.wikia.com/wiki/Music_Player_Daemon_Security">MPD Wiki::Security</a></li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/6324" class="linkexternal">Minion &#8211; Plugin Firefox</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.calcifer.com.ar/2008/05/mpd-music-player-daemon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Canon, de Johann Pachelbel en Guitarra Eléctrica</title>
		<link>http://blog.calcifer.com.ar/2006/09/canon-de-johann-pachelbel-en-guitarra-electrica/</link>
		<comments>http://blog.calcifer.com.ar/2006/09/canon-de-johann-pachelbel-en-guitarra-electrica/#comments</comments>
		<pubDate>Sat, 30 Sep 2006 17:25:05 +0000</pubDate>
		<dc:creator>lvidarte</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blog.calcifer.com.ar/2006/09/30/canon-de-johann-pachelbel-en-guitarra-electrica/</guid>
		<description><![CDATA[Vía BaluArt.net
Uno de los videos virales que desde hace nueve meses atrás causa revolución en YouTube es la interpretación del Canon de Johann Pachelbel en Guitarra Eléctrica por un joven-virtuoso anónimo.

]]></description>
			<content:encoded><![CDATA[<p class="from">Vía <a href="http://www.baluart.net/articulo/693/el-canon-de-pachelbel-en-guitarra-electrica.php" title="" class="linkexternal">BaluArt.net</a></p>
<p>Uno de los videos virales que desde hace nueve meses atrás causa revolución en <a href="http://www.youtube.com/" title="" class="linkexternal">YouTube</a> es la interpretación del Canon de <a href="http://es.wikipedia.org/wiki/Johann_Pachelbel" title="Johann Pachelbel en Wikipedia" class="linkwikipedia">Johann Pachelbel</a> en Guitarra Eléctrica por un joven-virtuoso anónimo.</p>
<div align="center" style="margin-top:20px"><embed style="width: 425px; height: 338px;" src="http://www.youtube.com/v/QjA5faZF1A8" type="application/x-shockwave-flash" height="338" width="425"></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.calcifer.com.ar/2006/09/canon-de-johann-pachelbel-en-guitarra-electrica/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

