<?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>Gerrit&#039;s work in progress &#187; music</title>
	<atom:link href="http://blog.wessendorf.org/tag/music/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.wessendorf.org</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 09 Jun 2011 01:57:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Music Networking with XMMS2, Icecast2 and Last.fm</title>
		<link>http://blog.wessendorf.org/2009/06/music-networking-with-xmms2-icecast2-and-lastfm/</link>
		<comments>http://blog.wessendorf.org/2009/06/music-networking-with-xmms2-icecast2-and-lastfm/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 05:37:54 +0000</pubDate>
		<dc:creator>gerrit</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[icecast2]]></category>
		<category><![CDATA[last.fm]]></category>
		<category><![CDATA[lifestream]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xmms2]]></category>

		<guid isPermaLink="false">http://blog.wessendorf.org/?p=825</guid>
		<description><![CDATA[In the last few months I haven&#8217;t found much time to listen to music, but I decided this needs to change and I should finally dust off my old music library. About two years ago I signed up for last.fm, the social music network that makes it easy to discover new music and connect with [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop i">I</span>n the last few months I haven&#8217;t found much time to listen to music, but I decided this needs to change and I should finally dust off my old music library. About two years ago I signed up for <a href="http://www.last.fm/user/celeph"><strong>last.fm</strong></a>, the social music network that makes it easy to discover new music and connect with other music fans. I used their software on my Windows box, but I rarely work with this system anymore. After adding several other computers and laptops to the household I didn&#8217;t bother with shared music folders and last-fm anymore. This was then.</p>
<p>Today I&#8217;m trying to setup a server that makes my music available to any of my computers and operating systems in the LAN, and possibly even outside the local network. At the same time I would like to add last.fm again, however, not linked to each individual player, but only once, to the music server.</p>
<p><img src="http://blog.wessendorf.org/wp-content/uploads/2009/06/musicnetwork.png" alt="musicnetwork" title="musicnetwork" width="425" height="445" class="aligncenter size-full wp-image-846" /></p>
<p>I stored my music files on an external <a href="http://www.lacie.com/products/product.htm?pid=10994"><strong>network drive</strong></a>. This music folder is a <a href="http://wiki.samba.org/index.php/Main_Page">Samba</a> share and accessible from other computers on the network.</p>
<p>VLC is known for its network streaming features and I wrote a little about it back in <a href="http://blog.wessendorf.org/software/videolan/">May</a>. While I use it occasionally to stream videos from one computer to another I was looking for a solution that could work better as a permanent configuration, well-suited as a music library. That&#8217;s how I stumbled upon the <em>X-platform Music Multiplexing System 2</em>, <a href="http://wiki.xmms2.xmms.se/wiki/Main_Page"><strong>XMMS2</strong></a>.<span id="more-825"></span></p>
<h3>XMMS2</h3>
<p>XMMS2 is a client-server music platform which can be controlled via command line but also through a variety of other interfaces available on Linux, Windows as well as Mac. It allows you to play and manage your music collection on a local server or across the network. It is free, open-source and extensible with a growing number of plugins. </p>
<p>On my Ubuntu system, it was just a matter of seconds to install XMMS2. Ubuntu&#8217;s repositories already include everything you might need. I browsed the Synaptic package manager for&#8230; </p>
<ul>
<li><tt>xmms2</tt>, the core application with server and command line client interface.</li>
<li><tt>xmms2-plugin-smb</tt>, a Samba transport extension I needed to get access to my music share.</li>
<li><tt>xmms2-scrobbler</tt>, used to submit data to Last.fm</li>
<li><tt>esperanza</tt>, a simple player, xmms2-client and graphical user interface</li>
<li><tt>xmms2-plugin-flac</tt>, to support the flac-format</li>
<li><tt>xmms2-plugin-mp4</tt>, to support the mp4-format</li>
</ul>
<p>XMMS2&#8242;s command line interface is very easy to use thanks to its legible commands and parameters, just to mention a few:</p>
<ul>
<li>To start the server: <code>xmms2-launcher</code></li>
<li>To quit the server: <code>xmms2 quit</code></li>
<li>To add some music: <code>xmms2 add /home/gerrit/Music/track.mp3</code></li>
<li>To add a folder recursively: <code>xmms2 radd /home/gerrit/Music/electronic/</code></li>
<li>To add some music from my samba-share: <code>xmms2 add smb://username:password@edmini/music/electronic/track.mp3</code></li>
<li>To list the contents of the current playlist: <code>xmms2 list</code></li>
<li>To play: <code>xmms2 play</code></li>
<li>To stop playback: <code>xmms2 stop</code></li>
</ul>
<p>If the server is already running and you install new plugins, you may have to restart it before you can use the plugin. You can stop the server with <code>xmms2 quit</code>, or if that doesn&#8217;t work for some reason:</p>
<ol>
<li>find the process-id with  <code>ps aux | grep xmms2d</code> and</li>
<li>kill the process with <code>sudo kill processid</code>.</li>
</ol>
<p>XMMS2 makes it easy to organize music in playlists:</p>
<ul>
<li><code>xmms2 playlist list</code> lists all available playlists</li>
<li><code>xmms2 playlist create myplaylistname</code> creates a new playlist</li>
<li><code>xmms2 playlist load myplaylistname</code> loads an existing playlist</li>
<li><code>xmms2 playlist active</code> shows which playlist is currently active</li>
</ul>
<p>With a separate set of <em>media library</em> commands you can also keep track of your artists, track and album titles, cover images, etc. To display a list of related commands: <code>xmms2 mlib</code>. To search for an artist: <code>xmms2 mlib search artist:"Boards*"</code>. Standard wildcard characters like &#8216;*&#8217; and &#8216;?&#8217; are supported, too. It&#8217;s probably easier to use these mlib functions from an XMMS2 client software other than the command line. With a player like <em>Esperanza</em> you will find an easy-to-use graphical user interface for command line parameters.</p>
<p>To make the XMMS2 daemon reachable from other computers I added a tcp-socket to the configuration <code>nano ~/.config/xmms2/xmms2.conf</code></p>
<pre class="brush:bash;light:true;">
<property name="ipcsocket">unix:///tmp/xmms-ipc-gerrit;tcp://
</property>
</pre>
<p>More details on remote machines can be found in the <a href="http://wiki.xmms2.xmms.se/wiki/FAQ#How_do_I_use_clients_on_remote_machines.3F">FAQ</a>. The default port is 9667. After restarting the xmms2d daemon I was ready to test my configuration from the other computer, a Windows system.</p>
<p>I installed the Windows built of XMMS2 and Esperanza which I found <a href="http://wiki.xmms2.xmms.se/wiki/Windows">here</a>, <a href="http://xmms2.xmms.se/~puzzles/win32/">puzzle&#8217;s win32 folder</a>. I had to make sure to use the version that matches the version of my server, in this example it was <em>XMMS2-DrLecter</em>. </p>
<p>I defined the following environment variable <tt>XMMS_PATH = tcp://192.168.1.43:9667</tt> to let XMMS2 know where to find my music server.</p>
<p>The command-line version of XMMS2 works great on Windows, but I was still experiencing some problems with Esperanza (downloaded Esperanza-0.3.exe) which exited with a runtime error. Whenever I tried to launch Esperanza on Windows, the server responded with <em>&#8220;Client &#8216;Esperanza&#8217; with bad protocol version (1, not 11) connected&#8221;</em>.</p>
<p>This looked like a similar conflict I experienced with the wrong XMMS2 version before, so I looked for another version. I found the DrLecter built Esperanza4-DrL.7z <a href="http://www.schrijnen.nl/auke/">here</a>. This version works great.</p>
<p><img src="http://blog.wessendorf.org/wp-content/uploads/2009/06/esperanzawin.png" alt="Esperanza" title="Esperanza" width="448" height="286" class="aligncenter size-full wp-image-857" /></p>
<p>Now I was ready to play, stop, and control my XMMS2 daemon from my remote computers, may it run Windows or Ubuntu. However, this configuration didn&#8217;t actually stream music from my server to the remote machine. It only served as a channel to remote control the server&#8217;s playlist. The music was still played nowhere but on the server system. </p>
<h3>Icecast2</h3>
<p>Icecast2 is a streaming server, a package that will allow you to setup a simple Internet radio station. It, too, is readily available in Ubuntu&#8217;s repository and can be installed via Synaptic. After installation I updated two configuration files: <code>sudo nano /etc/icecast2/icecast.xml</code></p>
<p>There I defined some passwords where the default was marked with &#8216;<em>hackme</em>&#8216;. I also changed the ports to 9600/9601. No particular reason, other than having the Icecast2 ports relatively close to the XMMS2 default port. You can choose any port there. More details in the <a href="http://www.icecast.org/docs/icecast-2.3.1/icecast2_basicsetup.html">basic setup help</a>. I left all the other settings alone and edited <code>sudo nano /etc/default/icecast2</code> to set <tt>ENABLE=true</tt>. After that I could start Icecast2 with <code>/etc/init.d/icecast2 start</code>.</p>
<p>The Icecast admin-page should now show up with the url <tt>http://localhost:9600</tt>. But there still is no music to stream. In the next step I linked XMMS2 to Icecast, using the&#8230; </p>
<h3>xmms2-plugin-ices</h3>
<p>As part of the Ubuntu repository it was installed in a matter of a few seconds. It needed to be configured in the <em>ices</em> section of <code>nano ~/.config/xmms2/xmms2.conf</code>.</p>
<p>Make sure you stop the daemon before you make any changes, otherwise they might not be visible next time you restart. If you can&#8217;t find an <em>ices</em> section after a fresh installation, you can let XMMS2 and the plugin set a default section up for you. Try restarting the daemon. In the <em>ices</em> section I just set the password and portnumber (9600) to match what I defined for Icecast2 earlier. See also the <a href="http://wiki.xmms2.xmms.se/wiki/Using_ICES_Output">XMMS2 wiki</a>.</p>
<p>This didn&#8217;t want to work in the beginning. I received error messages about insufficient permissions. I think this was caused by the fact that XMMS2 and the plugin both ran as <em>gerrit</em>, Icecast2, however, as <em>root</em>. To solve this problem I copied the Icecast configuration (icecast.xml and admin, web-folders) to my home-folder, and changed the owner of all these files.</p>
<pre class="brush:bash;light:true;">
chown -hR gerrit ~/.icecast
sudo nano /etc/default/icecast2
</pre>
<p>Now I had to point the daemon to the new folder:</p>
<pre class="brush:bash;">
CONFIGFILE="/home/gerrit/.icecast/icecast.xml"

# Name or ID of the user and group the daemon should run under
USERID=gerrit
GROUPID=gerrit
</pre>
<p>Almost done. There still was a warning about the error- and access logfiles in <tt>/var/log/icecast2/</tt>. To solve this I had to change the owner of the log-files <code>chown gerrit /var/log/icecast2/*</code> and restart Icecast2 <code>/etc/init.d/icecast2 start</code></p>
<p>Now I could set the output plugin to <em>ices</em> and start the playback with</p>
<pre class="brush:bash;light:true;">
xmms2 config output.plugin ices
xmms2 play
</pre>
<p>The radio stream is reachable with the following address for favorite media player: <tt>http://localhost:9600/stream.ogg.m3u</tt>, or <tt>http://192.168.1.43:9600/stream.ogg.m3u</tt></p>
<p><img src="http://blog.wessendorf.org/wp-content/uploads/2009/06/vlcwin.png" alt="VLC" title="VLC" width="447" height="146" class="alignnone size-full wp-image-860" /></p>
<p>Having turned the output to Icecast, you won&#8217;t be able to hear any music on the server, unless you open the stream. If you want to return to the standard sound output, use the following command:</p>
<pre class="brush:bash;light:true;">xmms2 config output.plugin alsa</pre>
<p>At this time, both output plugins can&#8217;t be activated together to hear music both on server and remote computer. You can only hear music if you connect to the Icecast server. The <a href="http://wiki.xmms2.xmms.se/wiki/FAQ#Why_can.27t_I_use_multiple_output_plugins_at_the_same_time.3F_I_want_to_listen_to_music_and_act_as_a_stream_source">XMMS2 FAQ</a> explains:</p>
<blockquote><p>The possibility of multiple outputs involves a nontrivial solution. The biggest problem is keeping all of the outputs in sync with each other. Each output must pull audio data from a buffer following the last decoder or effect plugin in the xform chain at a rate determined by the samplerate of the underlying device. For example, streaming audio will have an exact bitrate since no actual audio hardware is used for obtaining audio data, but a soundcard&#8217;s samplerate may vary by a few Hertz with temperature, components, and voltage. We end up with an ever growing buffer (if the buffer holds data longer for slower outputs) or dropped samples (if the data is destroyed after the faster output has read it). </p>
<p>    There are also smaller issues like that the xmms2 daemon takes into account the delays caused by the output plugin when showing the current playtime, but if there are multiple outputs these delays can vary. So one of them would have to be defined as a primary output to keep this feature in use. </p>
<p>    Current plan to resolve the aforementioned problem with concurrent output and stream sourcing is to make it possible for effect plugins to keep a constant input format and stay alive through song changes. That way they can draw the data from the stream itself and it won&#8217;t have synchronizing problems because the whole chain is still simple and one-dimensional.<span class="end"/></p></blockquote>
<p>The current configuration works great now. I have a server that provides a stream of music. This stream is accessible from all other computers, and I am able to control this Internet radio stream using XMMS2 and Esperanza if needed, from any other computer running Linux or Windows. </p>
<p>At this point I could probably stop and let it be, but I want to integrate some web-services and social media tools. While I&#8217;m mostly just experimenting with a new range of Internet applications, I&#8217;m also interested in sharing my music favorites and creating some personal charts of my highlights, the most frequently played tracks, the most important artists, etc. A great tool to link my local music adventures to the web 2.0 world is last.fm.</p>
<h3>Last.fm</h3>
<p><img src="http://blog.wessendorf.org/wp-content/uploads/2009/06/lastfm.png" alt="Last.fm" title="Last.fm" width="442" height="272" class="aligncenter size-full wp-image-862" /></p>
<p>To make my XMMS2/Icecast2 server talk with Last.fm I installed the <em>xmms2-scrobbler</em> plugin&#8230;as usual, from the standard Ubuntu repository. To configure this plugin I followed the instructions I found at <a href="http://sudosys.be/?q=xmms2-scrobbler">sudosys</a>.</p>
<p>The XMMS2 configuration is stored in <tt>~/.config/xmms2</tt>, but the plugin tries to read it in <tt>~/.xmms2</tt>. To work around this, I created a symlink <code>ln -s ~/.config/xmms2 ~/.xmms2</code></p>
<p>Next, I created a new directory for the plugin configuration and created a config file with my credentials:</p>
<pre class="brush:bash;light:true;">
mkdir -p ~/.config/xmms2/clients/xmms2-scrobbler
nano ~/.config/xmms2/clients/xmms2-scrobbler/config
</pre>
<p>added</p>
<pre class="brush:bash;light:true;">
user: MY_LASTFM_USER
password: MY_LASTFM_PASS
</pre>
<p>I created another symlink for the actual xmms2-scrobbler script, so it gets executed when I launch XMMS2.</p>
<pre class="brush:bash;light:true;">
ln -s /usr/bin/xmms2-scrobbler ~/.config/xmms2/startup.d/
</pre>
<p>After restarting XMMS2 your music will show up on your last.fm profile.</p>
<p><img src="http://blog.wessendorf.org/wp-content/uploads/2009/06/facebook.png" alt="Facebook" title="Facebook" width="207" height="263" class="alignright size-full wp-image-863" />Continuing from there you can expand your network by adding other services that access last.fm for your music statistics. On Facebook you can use a <a href="http://apps.new.facebook.com/listening/">last.fm application</a> to display your charts on your page or profile.</p>
<p>You can also integrate your last.fm data into your WordPress site with the <a href="http://www.ibegin.com/labs/wp-lifestream/">LiveStream</a> plugin. There is much more you can do, especially if you write your own applications, but this is how far my own configuration goes right now.</p>
<p>I hope you found any of these notes use- or helpful. As usual, please let me know if I forgot something or made a mistake somewhere. :]</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wessendorf.org/2009/06/music-networking-with-xmms2-icecast2-and-lastfm/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>In regione caecorum, rex est luscus.</title>
		<link>http://blog.wessendorf.org/2008/09/in-regione-caecorum-rex-est-luscus/</link>
		<comments>http://blog.wessendorf.org/2008/09/in-regione-caecorum-rex-est-luscus/#comments</comments>
		<pubDate>Sun, 28 Sep 2008 00:00:30 +0000</pubDate>
		<dc:creator>gerrit</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[lyrics]]></category>
		<category><![CDATA[quotes]]></category>

		<guid isPermaLink="false">http://blog.wessendorf.org/?p=51</guid>
		<description><![CDATA[The title of one of my favorite songs, its history and origins.]]></description>
			<content:encoded><![CDATA[<p>The title of one of my favorite songs, its history and origins.</p>
<p><span id="more-51"></span></p>
<blockquote><p>
In regione caecorum, rex est luscus.<br />
[In the realm of the blind, the one-eyed man is king.]<br />
(<a href="http://en.wikipedia.org/wiki/Erasmus" target="_blank">Desiderius Erasmus Roterodamus</a>, <a href="http://en.wikipedia.org/wiki/Adagia" target="_blank"><em>Collecteana Adagiorum</em></a>, 1500)
</p></blockquote>
<blockquote><p>
[...]How an one eyed man is<br />
Well syghted when<br />
He is amonge blynde men?<br />
(<a href="http://http://en.wikipedia.org/wiki/John_Skelton" target="_blank">John Skelton</a>, <em>Why Come Ye Nat To Courte</em>,  1522)
</p></blockquote>
<blockquote><p>
In the kingdome of blind men the one ey&#8217;d is king.<br />
(<a href="http://en.wikipedia.org/wiki/George_Herbert" target="_blank">George Herbert</a>, <em>Outlandish Proverbs</em>,  1640)
</p></blockquote>
<blockquote><p>
The one-eyed person is a beauty in the country of the blind.<br />
(<a href="http://en.wikipedia.org/wiki/Johann_Ludwig_Burckhardt" target="_blank">Johann Ludwig Burckhardt</a>, <em>Arabic Proverbs</em>,  1830)
</p></blockquote>
<blockquote><p>
[...] and through his thoughts ran this old proverb, as if it were a refrain:&#8211;<br />
&#8216;In the Country of the Blind the One-Eyed Man is King.&#8217; [...]<br />
(<a href="http://en.wikipedia.org/wiki/H._G._Wells" target="_blank">H.G. Wells</a>, <em>The Country of the Blind</em>, 1904)
</p></blockquote>
<blockquote><p>
In The Kingdom Of The Blind The One-Eyed Are Kings</p>
<p>If it were within,<br />
within our power<br />
beyond the reach<br />
of slavish pride,<br />
to no-longer<br />
harbour grievances<br />
behind the mask&#8217;s<br />
opportunists facade,</p>
<p>we could welcome responsibility<br />
like a long lost friend<br />
and re-establish laughter<br />
in the doll&#8217;s house once again.</p>
<p>For time has imprisoned us<br />
in the order of our years<br />
in the discipline of our ways<br />
and in the passing of momentary stillness</p>
<p>You can see our chaos in motion<br />
our chaos in motion<br />
We can view our chaos in motion<br />
view our chaos in motion&#8230;</p>
<p>&#8230;and the subsequent collisions of fools<br />
well-versed in the subtle art of slavery.<br />
(<a href="http://en.wikipedia.org/wiki/Brendan_Perry" target="_blank">Brendan Perry</a>, <em>The Serpent&#8217;s Egg</em>, 1988)
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.wessendorf.org/2008/09/in-regione-caecorum-rex-est-luscus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Owl Who Married a Goose</title>
		<link>http://blog.wessendorf.org/2008/06/the-owl-who-married-a-goose/</link>
		<comments>http://blog.wessendorf.org/2008/06/the-owl-who-married-a-goose/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 12:37:05 +0000</pubDate>
		<dc:creator>gerrit</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[shorts]]></category>

		<guid isPermaLink="false">http://blog.wessendorf.org/?p=184</guid>
		<description><![CDATA[In anticipation of the upcoming Ulrich Schnauss show in Baltimore I was surfing YouTube and ran across this amazing NFBC short film that turned out to fit perfectly to Ulrich Schnauss&#8217; music:]]></description>
			<content:encoded><![CDATA[<p><span class="drop i">I</span>n anticipation of the upcoming Ulrich Schnauss show in Baltimore I was surfing YouTube and ran across this amazing NFBC short film that turned out to fit perfectly to Ulrich Schnauss&#8217; music:</p>
<p class="center metamargin"><object width="425" height="344" wmode="transparent"><param name="wmode" value="transparent"></param><param name="movie" value="http://www.youtube.com/v/-iFLqjO7LBI&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/-iFLqjO7LBI&#038;color1=0xb1b1b1&#038;color2=0xcfcfcf&#038;hl=en&#038;feature=player_embedded&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wessendorf.org/2008/06/the-owl-who-married-a-goose/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thomas Feiner &#8211; Anywhen</title>
		<link>http://blog.wessendorf.org/2008/06/thomas-feiner-anywhen/</link>
		<comments>http://blog.wessendorf.org/2008/06/thomas-feiner-anywhen/#comments</comments>
		<pubDate>Thu, 05 Jun 2008 18:41:46 +0000</pubDate>
		<dc:creator>gerrit</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[lyrics]]></category>
		<category><![CDATA[samadhisound]]></category>

		<guid isPermaLink="false">http://blog.wessendorf.org/?p=276</guid>
		<description><![CDATA[I can&#8217;t wait to welcome the new Samadhisound release by Thomas Feiner to my collection soon. The following track is just wonderful. I get goosebumps every time I listen to it. I spare you a long speech about it and attach the lyrics and the video: Such a wonderful life when it&#8217;s weighing you down [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop i">I</span> can&#8217;t wait to welcome the new Samadhisound release by Thomas Feiner to my collection soon. The following track is just wonderful. I get goosebumps every time I listen to it. I spare you a long speech about it and attach the lyrics and the video:<br />
<span id="more-276"></span></p>
<blockquote class="metamargin"><p>Such a wonderful life when it&#8217;s weighing you down<br />
Are you in control?<br />
The suburban reign always stays the same<br />
Like the hollow smile cracking up your face</p>
<p>Take your battered soul, wear it as a crown<br />
All that numbs you<br />
Run a thousand miles, &#8217;till you hit the ground<br />
All that numbs you now<br />
And days roll into one and the same on you<br />
The world revolving around your spinning head</p>
<p>Make the fences high<br />
Make the blinds go down on the world outside<br />
Maybe the day will come<br />
When you wake up not feeling anything<br />
No more tears and no more pain</p>
<p>Take your bleeding heart, wear it on your sleeve<br />
All that numbs you<br />
Stare into the sun, the blind relief<br />
All that numbs you now<br />
As the years roll into one, only numbers change<br />
The world revolving around your spinning head<br />
The world revolving around your spinning head<br />
The world revolving around your spinning head</p>
<p>Take your battered soul, wear it as a crown<br />
All that numbs you<br />
Stare into the sun, the blind relief<br />
All that numbs you now<br />
As the years roll into one, only numbers change<br />
The world revolving around your spinning head</p></blockquote>
<p class="center"><span>From the album &#8216;The Opiates &#8211; Revised&#8217;.<br />
Video produced by K. Thorslund and T. Feiner.</span></p>
<p class="center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" wmode="transparent"><param name="wmode" value="transparent"></param><param name="src" value="http://www.youtube.com/v/V5v2ljEnkyg&amp;hl=en" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/V5v2ljEnkyg&amp;hl=en" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wessendorf.org/2008/06/thomas-feiner-anywhen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frans Lanting&#8217;s Life: A Journey Through Time</title>
		<link>http://blog.wessendorf.org/2008/05/frans-lantings-life-a-journey-through-time/</link>
		<comments>http://blog.wessendorf.org/2008/05/frans-lantings-life-a-journey-through-time/#comments</comments>
		<pubDate>Wed, 21 May 2008 11:29:13 +0000</pubDate>
		<dc:creator>gerrit</dc:creator>
				<category><![CDATA[arts]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[nature]]></category>

		<guid isPermaLink="false">http://blog.wessendorf.org/?p=352</guid>
		<description><![CDATA[Last Sunday we treated ourselves to a multimedia performance at the Meyerhoff Symphony Hall with Frans Lanting’s LIFE: A Journey Through Time. Frans Lanting is a Dutch-born nature photographer specializing in wildlife photography whose award-winning, respected work has been frequently published in the National Geographic, GEO or the German Stern magazines. A Journey Through Time [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop l">L</span>ast Sunday we treated ourselves to a multimedia performance at the Meyerhoff Symphony Hall with Frans Lanting’s <em>LIFE: A Journey Through Time</em>. <a title="Frans Lanting" href="http://www.lanting.com/" target="_blank">Frans Lanting</a> is a Dutch-born nature photographer specializing in wildlife photography whose award-winning, respected work has been frequently published in the <em>National Geographic</em>, <em>GEO</em> or the German <em>Stern</em> magazines. <em>A Journey Through Time</em> was an animated slideshow of nature photographs on a three-screen display above the orchestra, presented with a score composed by Baltimore native Philip Glass. This was a debut of the Baltimore Symphony Orchestra on the occasion of Philip Glass&#8217; 70th birthday.<span id="more-352"></span></p>
<p>I’m sure you are probably familiar with Philip Glass already, but if you aren’t: He is one of the most influential American minimalist or neo-classical composers who has written a countless number of ensemble works, operas, symphonies, concertos, film scores or piano pieces throughout the last few decades. Among so many other works he created the score to Godfrey Reggio’s <em>Quatsi</em>-trilogy, collaborated with Aphex Twin and David Bowie, and he also composed the score to the <em>Journey Through Time</em> last Sunday.</p>
<p>The event opened with a performance by the Capitol Quartet and orchestra performing Philip Glass’ <em>Concerto for Saxophone Quartet</em>. It was superb, but due to a brief snowfall and much to our disappointment it was decided to cut this pre-concert short and continue without intermission to the main presentation.</p>
<p>I noticed that many many seats were left empty again. The attendance wasn’t as bad as Michael Brook’s concert I wrote about in one of my last blog entries, and I didn’t expect it to be sold out, but I was surprised that not only the grand-tier seats but also many seats in the center rows were left empty. Even if you are not a fan of nature and wildlife photographs, I expected more interest in Philip Glass at least. Maybe the weather was responsible this time, maybe it was the price, or maybe we were not the only ones who didn&#8217;t have the best overall experience with the Meyerhoff and Baltimore Orchestra in the past.</p>
<p>While the performance itself has always been very enjoyable, the preceding sales process wasn&#8217;t. Not only was the ticket and schedule information on their website incorrect. The (incredibly arrogant) ticket sales person was also not willing to make a correction. And worse: More recently they took our $120 for another concert but never sent us the tickets. If you find an interesting show, <strong><em>I would strongly suggest you find another venue than the Meyerhoff</em></strong>. I know there are no alternatives in Baltimore, but I promise, it will be worth driving a few more miles for a much more pleasant experience. I will not return until I get an apology and the responsible is fired. It&#8217;s not so much about the lost $120, but in the end how we have been treated overall. That was totally unacceptable.  </p>
<p>It was also unacceptable that they decided to shorten last Sunday&#8217;s concert for no good reason. Nevertheless, the &#8220;Journey Through Time&#8221; was enjoyable, and the lack of an audience didn&#8217;t cause any harm. </p>
<p>During the slideshow I discovered that one picture of the <em>Argentine Horned Frog</em> was indeed used for a cd-cover of the legendary em:t collection! Somehow I find myself running across this label quite often lately. Although Lanting was credited in the inlay of <em>em:t2296</em> album, I didn&#8217;t connect Lanting&#8217;s name with this album. So I was very surprised to spot this photo during the presentation. Quite an exciting coincidence!</p>
<p><em>LIFE: A Journey Through Time</em> is also available as flash-site with music on the web at <a title="A Journey Through Time" href="http://www.lifethroughtime.com/" target="_blank">www.lifethroughtime.com</a> and as a book published by Taschen Verlag.</p>
<p>As a side-note, if you are interested in stunning nature photography I can highly recommend another book titled <em>The Smaller Majority</em> by Piotr Naskrecki. It made its rounds in the press a little while ago because it’s one of the few if not only book that has been printed in Hexachrome, allowing to present photos with a much wider, more brilliant range of colors than possible with the regular 4-color process. This method is normally used in advertising or packaging, but it hasn’t been used for books before. For more information, see also the websites at <a title="Harvard" href="http://www.hup.harvard.edu/features/nassma/" target="_blank">Harvard</a> or <a title="Pantone" href="http://www.pantone.com/pages/pantone/Pantone.aspx?pg=20006&amp;ca=6" target="_blank">Pantone</a>.</p>
<p class="center"><img class="alignnone size-full wp-image-63" style="border: 1px solid black; margin: 10px;" title="Journey Through Time" src="http://blog.wessendorf.org/wp-content/uploads/2008/05/journey-through-time.jpg" alt="Journey Through Time" width="400" height="300" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wessendorf.org/2008/05/frans-lantings-life-a-journey-through-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>David Sylvian in Visionaire</title>
		<link>http://blog.wessendorf.org/2008/05/david-sylvian-in-visionaire/</link>
		<comments>http://blog.wessendorf.org/2008/05/david-sylvian-in-visionaire/#comments</comments>
		<pubDate>Wed, 21 May 2008 11:13:20 +0000</pubDate>
		<dc:creator>gerrit</dc:creator>
				<category><![CDATA[books]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[samadhisound]]></category>
		<category><![CDATA[sylvian]]></category>

		<guid isPermaLink="false">http://blog.wessendorf.org/?p=343</guid>
		<description><![CDATA[I just read that David Sylvian will contribute to the winter issue of the Visionaire &#8220;magazine&#8221;. Visionaire is a &#8220;multi-format album of fashion and art&#8221; produced in a very limited edition. Every issue comes in a very special, one-of-its-kind format and packaging. It&#8217;s published three times a year and looks like something I would really [...]]]></description>
			<content:encoded><![CDATA[<p><span class="drop i">I</span> just read that David Sylvian will contribute to the winter issue of the <a title="Visionaire World" href="http://www.visionaireworld.com" target="_blank">Visionaire</a> &#8220;magazine&#8221;. Visionaire is a <em>&#8220;multi-format album of fashion and art&#8221;</em> produced in a very limited edition. Every issue comes in a very special, one-of-its-kind format and packaging. It&#8217;s published three times a year and looks like something I would really enjoy. But with (at least) $175 per issue and $675 for an annual subscription it is way out of my league.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wessendorf.org/2008/05/david-sylvian-in-visionaire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geheimnisvoll aber nicht Geheimniskrämerei</title>
		<link>http://blog.wessendorf.org/2008/03/geheimnisvoll-aber-nicht-geheimniskramerei/</link>
		<comments>http://blog.wessendorf.org/2008/03/geheimnisvoll-aber-nicht-geheimniskramerei/#comments</comments>
		<pubDate>Sat, 29 Mar 2008 11:36:15 +0000</pubDate>
		<dc:creator>gerrit</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[lyrics]]></category>
		<category><![CDATA[quotes]]></category>

		<guid isPermaLink="false">http://blog.wessendorf.org/?p=445</guid>
		<description><![CDATA[Geheimnisvoll aber nicht Geheimniskrämerei&#8221; from Ember Glance &#8211; The Permanence of Memory by David Sylvian &#38; Russell Mills original source is unknown This line plays with the German word &#8220;geheim&#8221; which can appear in &#8220;geheimnisvoll&#8221; as something mysterious or arcane, something that is just hidden to some people due to lack of exposure, but not [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Geheimnisvoll aber nicht Geheimniskrämerei&#8221;</p></blockquote>
<ul>
<li>from <em>Ember Glance &#8211; The Permanence of Memory<br />
</em>by David Sylvian &amp; Russell Mills</li>
<li>original source is unknown</li>
</ul>
<p>This line plays with the German word &#8220;geheim&#8221; which can appear in &#8220;geheimnisvoll&#8221; as something mysterious or arcane, something that is just hidden to some people due to lack of exposure, but not necessarily hidden by someone for a specific purpose. It can also appear in &#8220;Geheimniskrämerei&#8221; as secretiveness, something that is kept in secret by someone with a specific intent. This quote could perhaps be translated as &#8220;arcane but not secretive&#8221;?</p>
<p>It was used in the instrumental soundtrack to the <em>Ember Glance</em> installation by David Sylvian and Russell Mills. I found its appearance always very fascinating, not only because it is a quote in German which I would not really expect in David Sylvian&#8217;s work. But it also seems to fit so perfectly to the subject of their installation which dealt with those seemingly forgotten memories, that from time to time still manage to reach to the surface of consciousness for a very brief moment. Just like embers&#8217; glow would become visible in one moment and fade away in the following. I also liked how a closer, more careful look reveals such a subtle difference&#8230; just like a closer, more careful listen to music can reveal so many subtleties over time.</p>
<p>The voice sounds familiar, but I have never heard anything more about its background story or origins. During this time David Sylvian worked with Holger Czukay on several projects and I think that Holger may be responsible for this voice fragment. Was it Holger Czukay himself, or was is a quote by Karlheinz Stockhausen? Or somebody else?</p>
<p>I still wonder who said it, when and in which context. Or was it really specifically recorded for <em>Ember Glance</em>?</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.wessendorf.org/2008/03/geheimnisvoll-aber-nicht-geheimniskramerei/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

