<?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>schrankmonster blog &#187; Music</title>
	<atom:link href="http://www.schrankmonster.de/category/media/musik/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.schrankmonster.de</link>
	<description>technology-ninja!</description>
	<lastBuildDate>Sun, 08 Jan 2012 21:32:31 +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>downloading the whole Jamendo catalog</title>
		<link>http://www.schrankmonster.de/2011/09/18/downloading-the-whole-jamendo-catalog/</link>
		<comments>http://www.schrankmonster.de/2011/09/18/downloading-the-whole-jamendo-catalog/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 11:20:35 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2011/09/18/downloading-the-whole-jamendo-catalog/</guid>
		<description><![CDATA[Yesterday @simcup wrote on twitter about that he is currently downloading the whole Jamendo catalog of Creative Commons music. Although I already knew Jamendo it never occurred to be to download their whole catalog. Since I am a fan of choice I immediately thought about how I could download the catalog too. Since the only [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday <a href="http://twitter.com/#!/simcup/status/115186326776717312" target="_blank">@simcup</a> wrote on twitter about that he is currently downloading the whole Jamendo catalog of Creative Commons music. <a href="http://twitter.com/#!/simcup/status/115186326776717312" target="_blank"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="Capture" src="http://www.schrankmonster.de/wp-content/uploads/2011/09/Capture.png" alt="Capture" width="404" height="165" border="0" /></a></p>
<p>Although I already knew Jamendo it never occurred to be to download their whole catalog. Since I am a fan of choice I immediately thought about how I could download the catalog too. Since the only clue was a cryptic uri-like text how to achieve that it suddenly sounded like a great idea to write a universal tool and release it as open-source. This tool should allow users to download the whole catalog and keep their local jamendo mirror in sync with the server. So anytime new artists, albums or tracks are added the user does not need to download them all again.</p>
<p>So the only thing I had as a starting point was that cryptic uri pointing me to something I’ve never heard of called Rythmbox. Turns out that this is a GNOME music player application which has Jamendo integration. After some clueless poking around I decided to take a look at the source of Rythmbox, especially the Jamendo module.</p>
<p><a href="http://git.gnome.org/browse/rhythmbox/plain/plugins/jamendo/jamendo/JamendoSource.py?h=v0.13.x" target="_blank">This module</a> is written in python and quite clean to read. And just by looking at the first lines I came across the interesting fact that there is a almost daily updated XML dump of the Jamendo catalog available from Jamendo. Hurray! Since Jamendo wants developers to interact with the platform they decided to put a documentation online which allows anyone to write tools and stream and download tracks. After all the clues I found <a href="http://developer.jamendo.com/en/wiki/NewDatabaseDumps" target="_blank">I finally ended up on this page</a>.</p>
<p>So there are the catalog download, track stream and torrent uris necessary to download the catalog. Now the only thing that is needed is a tool which parses the XML and creates a nice folder structure for us.</p>
<p><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="folderstructure" src="http://www.schrankmonster.de/wp-content/uploads/2011/09/folderstructure.png" alt="folderstructure" width="183" height="128" border="0" /></p>
<p>Parsing XML in C# (my prefered programming language) is easy. Basically you can use a tool called <a href="http://msdn.microsoft.com/en-us/library/x6c1kb0s%28v=vs.80%29.aspx" target="_blank">XSD.exe</a> and let it generate first the XSD from the XML and then ready-to-use C# classes from that XSD.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2011/09/generating_xsd_and_csharp.png" target="_blank"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="generating_xsd_and_csharp" src="http://www.schrankmonster.de/wp-content/uploads/2011/09/generating_xsd_and_csharp_thumb.png" alt="generating_xsd_and_csharp" width="400" height="258" border="0" /></a></p>
<p>After doing all that actually reading the whole catalog into a useable form breaks down to just three lines of code:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2011/09/parsingxml.png"><img style="background-image: none; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px; border: 0px;" title="parsingxml" src="http://www.schrankmonster.de/wp-content/uploads/2011/09/parsingxml_thumb.png" alt="parsingxml" width="404" height="57" border="0" /></a></p>
<p>Isn’t it great how modern frameworks take away the complexity of such tasks. At this point I’ve already parsed the whole catalog into my tool and only wrote three lines of code. The rest was generated automatically for me. The best of all – this also works on non-windows operating systems when you use <a href="http://www.mono-project.com/Main_Page" target="_blank">mono</a>.</p>
<p>When the XML data is parsed and available in a nice data structure it’s easy to iterate through all artists, all albums and all tracks and then download the actual mp3 or ogg. And that’s basically what my tool does. It takes the XML, parses it, and downloads. It will check before downloading if the track already exists and will only download those added since the last run.</p>
<p>Additionally since I am deeply involved into the development of the <a href="http://github.com/sones/sones" target="_blank">GraphDB graph database at sones</a> I want to make use of the Jamendo data and the graph structure it poses. Since the directory structure my tool is generating is only one aspect how you could possibly look at the data it’s quite interesting to demonstrate the capabilities of GraphDB based on that data.</p>
<p>The idea behind the graph representation of the data is that you could start from almost any starting point imaginable. No matter if you you start from a single track and drill up into genre and artists, or if you start at a location and drill down to tracks.</p>
<p>So what the Downloader does in matters of GraphDB integration is that it outputs a GraphQL script which can be imported into an instance of GraphDB.</p>
<p><a href="https://github.com/bietiekay/JAMENDOwnloader" target="_blank">The sourcecode of my tool is available on github</a> and released unter the BSD license – feel free to play with it and to contribute.</p>
<p>Source 1: <a href="http://www.jamendo.com">http://www.jamendo.com</a><br />
Source 2: <a title="https://github.com/bietiekay/JAMENDOwnloader" href="https://github.com/bietiekay/JAMENDOwnloader">https://github.com/bietiekay/JAMENDOwnloader</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/09/18/downloading-the-whole-jamendo-catalog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shairport &#8211; someone reversed an AirPort Express</title>
		<link>http://www.schrankmonster.de/2011/04/19/shairport-someone-reversed-an-airport-express/</link>
		<comments>http://www.schrankmonster.de/2011/04/19/shairport-someone-reversed-an-airport-express/#comments</comments>
		<pubDate>Tue, 19 Apr 2011 18:11:31 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[N3RD]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7557</guid>
		<description><![CDATA[Low Latency Network Audio was a dream for the past years (see an article of 2005 and 2008) and with AirPlay it&#8217;s finally there. I am using the Apple AirPlay technology for several years now&#8230; after it got implemented into iOS it&#8217;s just fantastic to have the option to have whatever sound source I want [...]]]></description>
			<content:encoded><![CDATA[<p>Low Latency Network Audio was a dream for the past years (see an article of <a href="../2005/05/12/another-nerd-wish-low-latency-network-audio/" target="_blank">2005</a> and <a href="../2008/09/01/i-finally-got-my-low-latency-network-audio-solution/" target="_blank">2008</a>) and with AirPlay it&#8217;s finally there.</p>
<p>I am using the Apple AirPlay technology for several years now&#8230; after it got implemented into iOS it&#8217;s just fantastic to have the option to have whatever sound source I want to playing loud and clear in any room I want to&#8230;</p>
<p>Okay it&#8217;s not quite as sophisticated as the sonos solution regarding the control of multiple music sources in multiple rooms but it get&#8217;s the job done in an apartment.</p>
<p>So back to the topic: Apple integrated the AirPlay technology into their wireless base station &#8220;AirPort Express&#8221;. Basically AirPlay is a piece of software which receives an encrypted audio stream over the network and outputs the stream to the SPDIF or audio jack.</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/overview_express_20080618.png"><img class="aligncenter size-medium wp-image-7560" title="overview_express_20080618" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/overview_express_20080618-224x300.png" alt="" width="224" height="300" /></a></p>
<p>Back in 2005 there already was an emulator of this protocol called &#8220;Fairport&#8221; but Apple decided to encrypt the AirPlay traffic. This led to the problem that the encryption key was unkown because it&#8217;s baked into the AirPort Express firmware. And this is where the good news start:</p>
<p><em>&#8220;My girlfriend moved house, and her Airport Express no longer made it with her wireless access point. I figured it&#8217;d be easy to find an ApEx emulator &#8211; there are several open source apps out there to play to them. However, I was disappointed to find that Apple used a public-key crypto scheme, and there&#8217;s a private key hiding inside the ApEx. So I took it apart (I still have scars from opening the glued case!), dumped the ROM, and reverse engineered the keys out of it.&#8221;</em></p>
<p>So to keep things short: Someone got an AirPort Express, dumped the firmware, extracted the AirPlay encryption keys and wrote an emulator of the AirPlay protocol which uses the key. Voilá!</p>
<p>ShairPort is available in source code on the site of the guy and obviously it&#8217;s unsure if Apple will react by changing the encryption key in the future. But for the time being it works as advertised:</p>
<p>I took one of my computers and followed the instructions to update perl, install Macports and then run ShairPort. So when ShairPort is run it looks not as appealing as expected:</p>
<p style="text-align: center;"><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-19.24.58.png" target="_blank"><img class="aligncenter size-medium wp-image-7562" title="Bildschirmfoto 2011-04-19 um 19.24.58" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-19.24.58-300x156.png" alt="" width="300" height="156" /></a></p>
<p>Notably  it uses IPv6 to communicate between iTunes and ShairPort&#8230; Oh I almost forgot to show how it looks in iTunes:</p>
<p><a href="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-19.25.06.png"><img class="aligncenter size-full wp-image-7563" title="Bildschirmfoto 2011-04-19 um 19.25.06" src="http://www.schrankmonster.de/wp-content/uploads/2011/04/Bildschirmfoto-2011-04-19-um-19.25.06.png" alt="" width="207" height="121" /></a></p>
<p>On another side note: It works on Linux, Windows and Mac OS X <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Source 1: <a title="Apple AirPlay" href="http://www.apple.com/itunes/airplay/" target="_blank">Apple AirPlay<br />
</a>Source 2: <a title="Sonos" href="http://www.sonos.com" target="_blank">Sonos</a><br />
Source 3: <a title="Apple AirPort Express" href="http://www.apple.com/de/airportexpress/" target="_blank">Apple AirPort Express</a><br />
Source 4: <a title="ShairPort" href="http://mafipulation.org/blagoblig/2011/04/08#shairport" target="_blank">ShairPort</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2011/04/19/shairport-someone-reversed-an-airport-express/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Still 9 days to go till SXSW 2010</title>
		<link>http://www.schrankmonster.de/2010/03/07/still-9-days-to-go-till-sxsw-2010/</link>
		<comments>http://www.schrankmonster.de/2010/03/07/still-9-days-to-go-till-sxsw-2010/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 13:23:41 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2010/03/07/still-9-days-to-go-till-sxsw-2010/</guid>
		<description><![CDATA[Since there are still 9 days to go till SXSW 2010 it’s a pleasure to give out a link to the completely unofficial torrents which old all mp3 files of almost all songs which are to be presented at this years SXSW: “The SXSW® Music and Media Conference showcases hundreds of musical acts from around [...]]]></description>
			<content:encoded><![CDATA[<p>Since there are still 9 days to go till SXSW 2010 it’s a pleasure to give out a link to the completely unofficial torrents which old all mp3 files of almost all songs which are to be presented at this years SXSW:</p>
<p><em>“The SXSW® Music and Media Conference showcases hundreds of musical acts from around the globe on over eighty stages in downtown Austin. By day, conference registrants do business in the SXSW® Trade Show in the Austin Convention Center and partake of a full agenda of informative, provocative panel discussions featuring hundreds of speakers of international stature.”</em></p>
<p align="center"><a href="http://sites.google.com/site/sxswtorrent/2010" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="sxsw" border="0" alt="sxsw" src="http://www.schrankmonster.de/wp-content/uploads/2010/03/sxsw.png" width="404" height="123" /></a>&#160;</p>
<p>Source 1: <a title="http://www.sxsw.com/music" href="http://www.sxsw.com/music">http://www.sxsw.com/music</a>    <br />Source 2: <a title="http://sites.google.com/site/sxswtorrent/2010" href="http://sites.google.com/site/sxswtorrent/2010">http://sites.google.com/site/sxswtorrent/2010</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2010/03/07/still-9-days-to-go-till-sxsw-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nine Inch Nails &#8211; another version of the truth &#8211; fan blu-ray release</title>
		<link>http://www.schrankmonster.de/2009/12/26/nine-inch-nails-another-version-of-the-truth-fan-blu-ray-release/</link>
		<comments>http://www.schrankmonster.de/2009/12/26/nine-inch-nails-another-version-of-the-truth-fan-blu-ray-release/#comments</comments>
		<pubDate>Sat, 26 Dec 2009 12:11:45 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/12/26/nine-inch-nails-another-version-of-the-truth-fan-blu-ray-release/</guid>
		<description><![CDATA[“12 months, a core team of dozens (with a network of thousands) spanning 3 continents, 4 languages, 5 specialist teams, countless sleepless nights&#8230; It&#8217;s finally here. Filmed in Sacramento, Portland, and Victoria by the Nine Inch Nails team, edited and produced by their fans, The Gift is a stunning work in 1080p High Definition video [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><em>“12 months,     <br />a core team of dozens (with a network of thousands)      <br />spanning 3 continents,      <br />4 languages,      <br />5 specialist teams,      <br />countless sleepless nights&#8230;</em></p>
<p align="center"><em>It&#8217;s finally here.</em></p>
<p align="center"><em>Filmed in Sacramento, Portland, and Victoria by the Nine Inch Nails team, edited and produced by their fans, The Gift is a stunning work in 1080p High Definition video with 5.1 Surround Sound, multi-language subtitles, and artistically-driven ethics.”</em></p>
<p>You’re reading it right: the final production is ready to be downloaded. I am downloading it right now. </p>
<p><a href="http://thisoneisonus.org" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Capture" border="0" alt="Capture" src="http://www.schrankmonster.de/wp-content/uploads/2009/12/Capture.jpg" width="394" height="404" /></a> </p>
<p>It’s a complete Nine Inch Nails live concert in full-hd. Free for all / Not for sale. Get it while it’s hot!</p>
<p>Source: <a title="http://thisoneisonus.org" href="http://thisoneisonus.org">http://thisoneisonus.org</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/12/26/nine-inch-nails-another-version-of-the-truth-fan-blu-ray-release/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>music of the weekend: Ladyhawke</title>
		<link>http://www.schrankmonster.de/2009/10/18/music-of-the-weekend-ladyhawke/</link>
		<comments>http://www.schrankmonster.de/2009/10/18/music-of-the-weekend-ladyhawke/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 12:25:15 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7267</guid>
		<description><![CDATA[Great find this weekend. I haven&#8217;t heard of Ladyhawke until Saturday. Now it&#8217;s the soundtrack of this weekend and the upcoming week! Great pop music with a touch of rock. Powerful and fast. One of my favourites in the album is &#8220;My Delirium&#8221; &#8211; a song that has a subtle feeling of the Cardigans song [...]]]></description>
			<content:encoded><![CDATA[<p>Great find this weekend. I haven&#8217;t heard of Ladyhawke until Saturday. Now it&#8217;s the soundtrack of this weekend and the upcoming week!</p>
<p><a href="http://www.ladyhawkemusic.com/" target="_blank"><img class="aligncenter size-medium wp-image-7268" title="ladyhawke" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/ladyhawke-300x222.png" alt="ladyhawke" width="300" height="222" /></a></p>
<p>Great pop music with a touch of rock. Powerful and fast. One of my favourites in the album is &#8220;My Delirium&#8221; &#8211; a song that has a subtle feeling of the Cardigans song &#8220;My Favourite Game&#8221;.</p>
<p>Ladyhawke writes in her blog about it:</p>
<p style="text-align: left;"><em>&#8220;I wrote the song a year and a half ago after days of no sleep due to terrible jetlag. I felt like I was going out of my mind. I was missing my friends and family back home, and I was basically living to hear my phone ring in hope that it would be one of them calling. So my delirium came out of me thinking I was going crazy from lack of sleep!</em></p>
<p style="text-align: left;"><em>I always knew this song had the potential for a really imaginative video, considering the general theme of the song is me going crazy. So when I read the treatment sent in by the Frater guys, a duo of London based directors who specialise inanimation, I knew it was the one!&#8221;</em></p>
<p style="text-align: center;"><em><br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="295" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/C2FFUQ12TJc&amp;hl=de&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="295" src="http://www.youtube.com/v/C2FFUQ12TJc&amp;hl=de&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object><br />
</em></p>
<p>Source: <a href="http://www.ladyhawkemusic.com/" target="_blank">http://www.ladyhawkemusic.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/18/music-of-the-weekend-ladyhawke/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>newly found artist</title>
		<link>http://www.schrankmonster.de/2009/10/09/newly-found-artist/</link>
		<comments>http://www.schrankmonster.de/2009/10/09/newly-found-artist/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 20:59:40 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7255</guid>
		<description><![CDATA[Imogen Heap is obviously an artist I have missed in the past years. More precisely Imogen Heap is a singer-songwriter whose newest album just became available. I found it due to one very special song called &#8220;Bad Body Double&#8221; which was played in an episode of the tv show &#8220;Heroes&#8221;. Great thing is that it&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>Imogen Heap is obviously an artist I have missed in the past years. More precisely Imogen Heap is a singer-songwriter whose newest album just became available. I found it due to one very special song called &#8220;Bad Body Double&#8221; which was played in an episode of the tv show &#8220;Heroes&#8221;.</p>
<div id="attachment_7256" class="wp-caption aligncenter" style="width: 208px"><img class="size-full wp-image-7256" title="imogenheap-ellipse" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/Bildschirmfoto-2009-10-09-um-22.40.28.png" alt="imogenheap-ellipse" width="198" height="190" /><p class="wp-caption-text">Imogen Heap - Ellipse</p></div>
<p>Great thing is that it&#8217;s available right now. And it&#8217;s available in two flavours. You can have the single-cd version which holds all the great songs. And you can have the deluxe version which holds all great songs + the instrumental version of each song.</p>
<p>Great stuff! It seems I have to catch up some great tunes from this artist in the near future!</p>
<p><strong>UPDATE</strong>: Before you need to buy that album, just listen to it first:<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="355" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowscriptaccess" value="always" /><param name="src" value="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fimogenheap%2Fsets%2Fellipse-album&amp;show_comments=false&amp;auto_play=false&amp;show_playcount=true&amp;show_artwork=true&amp;color=3a6366" /><embed type="application/x-shockwave-flash" width="550" height="355" src="http://player.soundcloud.com/player.swf?url=http%3A%2F%2Fsoundcloud.com%2Fimogenheap%2Fsets%2Fellipse-album&amp;show_comments=false&amp;auto_play=false&amp;show_playcount=true&amp;show_artwork=true&amp;color=3a6366" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/09/newly-found-artist/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jugendhelden</title>
		<link>http://www.schrankmonster.de/2009/10/02/jugendhelden/</link>
		<comments>http://www.schrankmonster.de/2009/10/02/jugendhelden/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 21:03:23 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[books]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=7204</guid>
		<description><![CDATA[Es ist schon extrem erstaunlich was in einem vorgeht und welch erstauntes Gesicht man macht wenn man durch Zufall einmal ein Video von den Sprechern der &#8220;Drei Fragezeichen&#8221; findet. Hand aufs Herz: Klingen die Stimmen so wie die Personen aussehen? Also ich komm immer wieder aus dem Staunen nicht heraus wenn ich die Stimmen höre [...]]]></description>
			<content:encoded><![CDATA[<p>Es ist schon extrem erstaunlich was in einem vorgeht und welch erstauntes Gesicht man macht wenn man durch Zufall einmal ein Video von den Sprechern der &#8220;Drei Fragezeichen&#8221; findet.</p>
<p style="text-align: 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"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/-5LGmuPhfrY&amp;hl=de&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/-5LGmuPhfrY&amp;hl=de&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p style="text-align: left;">Hand aufs Herz: Klingen die Stimmen so wie die Personen aussehen? Also ich komm immer wieder aus dem Staunen nicht heraus wenn ich die Stimmen höre und die Gesicher dazu sprechen sehe. Da muss doch ein Trick dabei sein!</p>
<p style="text-align: left;">Ach übrigends sind heute auch noch zwei neue Folgen der &#8220;drei Fragezeichen&#8221; erschienen&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/02/jugendhelden/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Musik zum Piratenpartei-Wahlkampf 2009</title>
		<link>http://www.schrankmonster.de/2009/10/02/musik-zum-piratenpartei-wahlkampf-2009/</link>
		<comments>http://www.schrankmonster.de/2009/10/02/musik-zum-piratenpartei-wahlkampf-2009/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 09:57:23 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/10/02/musik-zum-piratenpartei-wahlkampf-2009/</guid>
		<description><![CDATA[“Und ein weiterer Schritt im Free! Music! Contest wurde getan: Der Sampler steht nun zum Download zur Verfügung! Da die Rückfrage kam: Natürlich sind alle Stücke unter Creative Commons lizenziert. Fast vier Stunden Musik waren eingereicht worden und am Ende stand eines fest: Mit einer einzelnen CD wären wir nicht in der Lage gewesen, die [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.schrankmonster.de/wp-content/uploads/2009/10/cover.jpg" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="cover" border="0" alt="cover" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/cover_thumb.jpg" width="397" height="404" /></a> </p>
<p><em>“Und ein weiterer Schritt im Free! Music! Contest wurde getan: Der Sampler steht nun zum Download zur Verfügung! Da die Rückfrage kam: Natürlich sind alle Stücke unter Creative Commons lizenziert.</em></p>
<p><em>Fast vier Stunden Musik waren eingereicht worden und am Ende stand eines fest: Mit einer einzelnen CD wären wir nicht in der Lage gewesen, die Qualität der Einsendungen entsprechend zu würdigen. Also verzichten wir auf ungefähr 70% des Gewinns und haben dafür 100% mehr feinste freie Musik. <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ”</em></p>
<p align="center"><a href="http://www.schrankmonster.de/wp-content/uploads/2009/10/Capture.png" target="_blank"><em><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="Capture" border="0" alt="Capture" src="http://www.schrankmonster.de/wp-content/uploads/2009/10/Capture_thumb.png" width="400" height="344" /></em></a> Track-Listing</p>
<p>Source: <a href="http://musik.klarmachen-zum-aendern.de/">musik.klarmachen-zum-aendern.de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/10/02/musik-zum-piratenpartei-wahlkampf-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oh my gosh! How could I miss that?</title>
		<link>http://www.schrankmonster.de/2009/09/25/oh-my-gosh-how-could-i-miss-that/</link>
		<comments>http://www.schrankmonster.de/2009/09/25/oh-my-gosh-how-could-i-miss-that/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 15:02:21 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/25/oh-my-gosh-how-could-i-miss-that/</guid>
		<description><![CDATA[The news: Amanda MacKinnon aka Mandarin is back! After BIS and Data Panik it’s time for some more internet coverage and new songs! Brave young Manda has moved out to once again fill our music players with great songs. &#160; Source 1: http://www.planetmanda.com/]]></description>
			<content:encoded><![CDATA[<p>The news: Amanda MacKinnon aka Mandarin is back! After BIS and Data Panik it’s time for some more internet coverage and new songs!</p>
<p><a href="http://www.planetmanda.com/blog/2009/06/06/a-big-decisionbut-here-goes/" target="_blank">Brave</a> young Manda has moved out to once again fill our music players with great songs.</p>
<p><a href="http://www.planetmanda.com/" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="mandarin" border="0" alt="mandarin" src="http://www.schrankmonster.de/wp-content/uploads/2009/09/mandarin.png" width="404" height="60" /></a></p>
<div style="padding-bottom: 0px; padding-left: 0px; width: 425px; padding-right: 0px; display: block; float: none; margin-left: auto; margin-right: auto; padding-top: 0px" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:c867b703-fbab-4dfe-9be9-4d0c737f0b18" class="wlWriterEditableSmartContent">
<div><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/pp_8qrsycB0&amp;hl=de&amp;fs=1&amp;&amp;hl=en"></param><embed src="http://www.youtube.com/v/pp_8qrsycB0&amp;hl=de&amp;fs=1&amp;&amp;hl=en" type="application/x-shockwave-flash" width="425" height="355"></embed></object></div>
</div>
<p>&#160;</p>
<p>Source 1: <a title="http://www.planetmanda.com/" href="http://www.planetmanda.com/">http://www.planetmanda.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/25/oh-my-gosh-how-could-i-miss-that/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>this is the kind of musicians the world needs&#8230;</title>
		<link>http://www.schrankmonster.de/2009/09/20/this-is-the-kind-of-musicians-the-world-needs/</link>
		<comments>http://www.schrankmonster.de/2009/09/20/this-is-the-kind-of-musicians-the-world-needs/#comments</comments>
		<pubDate>Sun, 20 Sep 2009 15:48:47 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/?p=4270</guid>
		<description><![CDATA[I just found out that Jason Mraz &#8211; this singer songwriter guy with the nice smooth melodies &#8211; is doing some things different. For example Jason and his management encourage bootleg recordings by even offering several spots near the mixing desk. Yes you&#8217;re reading it right: You can go to his concert and record it! [...]]]></description>
			<content:encoded><![CDATA[<p>I just found out that Jason Mraz &#8211; this singer songwriter guy with the nice smooth melodies &#8211; is doing some things different.</p>
<p>For example Jason and his management encourage bootleg recordings by even offering several spots near the mixing desk. Yes you&#8217;re reading it right: You can go to his concert and record it! You can even download several concerts in excellent quality (flac&#8217;n'stuff) on <a href="http://www.archive.org/details/JasonMraz" target="_blank">archive.org</a>. How cool is this!</p>
<p>I just have to go to a record shop and buy something made by this guy!</p>
<p>By the way: his current album isn&#8217;t bad at all&#8230; it&#8217;s great!</p>
<p>Source 1: <a href="http://www.archive.org/details/JasonMraz" target="_blank">http://www.archive.org/details/JasonMraz</a><br />
Source 2: <a href="http://en.wikipedia.org/wiki/Jason_Mraz" target="_blank">http://en.wikipedia.org/wiki/Jason_Mraz</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/20/this-is-the-kind-of-musicians-the-world-needs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>rule the world</title>
		<link>http://www.schrankmonster.de/2009/09/01/rule-the-world/</link>
		<comments>http://www.schrankmonster.de/2009/09/01/rule-the-world/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 03:43:36 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/09/01/ruleTheWorld.aspx</guid>
		<description><![CDATA[“Welcome to your life There&#8217;s no turning back Even while sleep We will find you Acting on your best behaviour Turn your back on mother nature Everybody wants to rule the world” Tears for Fears, Everybody wants to rule the world]]></description>
			<content:encoded><![CDATA[<p align="center"><em>“Welcome to your life     <br />There&#8217;s no turning back      <br />Even while sleep      <br />We will find you      <br />Acting on your best behaviour      <br />Turn your back on mother nature      <br />Everybody wants to rule the world”</em></p>
<p align="center">Tears for Fears, </p>
<p align="center">Everybody wants to rule the world</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/09/01/rule-the-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mash-Up Charts FTW!</title>
		<link>http://www.schrankmonster.de/2009/08/18/mash-up-charts-ftw/</link>
		<comments>http://www.schrankmonster.de/2009/08/18/mash-up-charts-ftw/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 08:10:15 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[makes-my-day]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/08/18/MashUpChartsFTW.aspx</guid>
		<description><![CDATA[If you want to completely destroy your productivity for today, just go ahead and visit this great Mash-Up Charts website. “A mashup, bootleg or blend (also mash up and mash-up) is a song or composition created by blending two or more songs, usually by overlaying the vocal track of one song seamlessly over the music [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to completely destroy your productivity for today, just go ahead and visit this great Mash-Up Charts website. </p>
<p><em>“A <b>mashup</b>, <b>bootleg</b> or <b>blend</b> (also <b>mash up</b> and <b>mash-up</b>) is a song or composition created by blending two or more songs, usually by overlaying the vocal track of one song seamlessly over the music track of another.</em></p>
<p><em>In full swing at the end of the 20th century, mashups have been described positively as &#8220;ultimate </em><a href="http://en.wikipedia.org/wiki/Postmodern_music"><em>post-modern</em></a><em> pop song[s]&#8221; or &#8220;&#8216;</em><a href="http://en.wikipedia.org/wiki/Culture_jamming"><em>culture jamming</em></a><em> in its purest form&#8217;&#8221; They have also been described negatively as &#8220;the logical extension of the </em><a href="http://en.wikipedia.org/wiki/Sampling_%28music%29"><em>sampling</em></a><em> fever of the &#8217;80s taken to its dumbest extreme&#8221;. Due to the questionable legal status of mash ups and little chance of profits &#8220;there&#8217;s a real </em><a href="http://en.wikipedia.org/wiki/Punk_subculture"><em>punk rock</em></a><em> attitude attached to the movement&#8221;.”</em> (<a href="http://en.wikipedia.org/wiki/Mashup_%28music%29" target="_blank">Source</a>)</p>
<p align="center"><a href="http://www.mashup-charts.com/" target="_blank"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="mashupcharts" border="0" alt="mashupcharts" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/MashUpChartsFTW_8CA8/mashupcharts_1.png" width="404" height="349" /></a> </p>
<p align="left">Oh… by the way: This is not the first time I am writing about Mash-Ups… be sure to have a look <a href="http://www.schrankmonster.de/2008/07/30/bootieBootlegMashupMusic.aspx" target="_blank">here</a> and <a href="http://www.schrankmonster.de/2008/11/08/DJMorgothMashUpYourBootzParty.aspx" target="_blank">here</a>.</p>
<p>Source 1: <a title="http://www.mashup-charts.com/" href="http://www.mashup-charts.com/">http://www.mashup-charts.com/</a>    <br />Source 2: <a title="http://en.wikipedia.org/wiki/Mashup_%28music%29" href="http://en.wikipedia.org/wiki/Mashup_%28music%29">http://en.wikipedia.org/wiki/Mashup_%28music%29</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/08/18/mash-up-charts-ftw/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>taking Songbird for a spin (again)</title>
		<link>http://www.schrankmonster.de/2009/06/20/taking-songbird-for-a-spin-again/</link>
		<comments>http://www.schrankmonster.de/2009/06/20/taking-songbird-for-a-spin-again/#comments</comments>
		<pubDate>Sat, 20 Jun 2009 11:56:42 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/06/20/takingSongbirdForASpinAgain.aspx</guid>
		<description><![CDATA[Since my last Songbird experiences were not that great I thought it would be a great idea to take the newly released 1.2 version of Songbird for a spin. It&#8217;s said that the new version is faster and more stable. I installed 3 hours ago and I still cannot use it since it&#8217;s syncing with [...]]]></description>
			<content:encoded><![CDATA[<p>Since my last Songbird experiences were not that great I thought it would be a great idea to take the newly released 1.2 version of Songbird for a spin.</p>
<p>It&#8217;s said that the new version is faster and more stable. I installed 3 hours ago and I still cannot use it since it&#8217;s syncing with iTunes ever since.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/takingSongbirdforaspinagain_D0E4/songbird_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="302" alt="songbird" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/takingSongbirdforaspinagain_D0E4/songbird_thumb.png" width="400" border="0"></a> </p>
<p align="left">More on that topic when songbird is ready&#8230;.</p>
<p align="left">Source: <a title="http://getsongbird.com/" href="http://getsongbird.com/">http://getsongbird.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/06/20/taking-songbird-for-a-spin-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Coldplay Live Album</title>
		<link>http://www.schrankmonster.de/2009/05/16/free-coldplay-live-album/</link>
		<comments>http://www.schrankmonster.de/2009/05/16/free-coldplay-live-album/#comments</comments>
		<pubDate>Sat, 16 May 2009 11:58:49 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/05/16/FreeColdplayLiveAlbum.aspx</guid>
		<description><![CDATA[Get it while it’s hot – it’s free by the way. Any eMail adress will work. Source: http://lrlrl.coldplay.com/leftright.html]]></description>
			<content:encoded><![CDATA[<p>Get it while it’s hot – it’s free by the way. Any eMail adress will work.</p>
<p align="center"><a href="http://lrlrl.coldplay.com/leftright.html" target="_blank"><img title="image" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="444" alt="image" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/FreeColdplayLiveAlbum_C425/image_3.png" width="404" border="0" /></a></p>
<p>Source: <a title="http://lrlrl.coldplay.com/leftright.html" href="http://lrlrl.coldplay.com/leftright.html">http://lrlrl.coldplay.com/leftright.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/05/16/free-coldplay-live-album/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sean Fournier &#8211; Oh My</title>
		<link>http://www.schrankmonster.de/2009/05/08/sean-fournier-oh-my/</link>
		<comments>http://www.schrankmonster.de/2009/05/08/sean-fournier-oh-my/#comments</comments>
		<pubDate>Fri, 08 May 2009 17:16:51 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2009/05/08/SeanFournierOhMy.aspx</guid>
		<description><![CDATA[I just found a great new album (well it&#8217;s 2008&#8230;but&#8230;). Just in time for the upcoming summer. Thanks very much for that great music. Oh &#8211; it&#8217;s free &#8211; if YOU want it &#8211; just click the link and download it &#8211; it&#8217;s great, have I mentioned that? Source: http://www.sean-fournier.com/ohmy/]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SeanFournierOhMy_11CF4/seanfournier_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="231" alt="seanfournier" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/SeanFournierOhMy_11CF4/seanfournier_thumb.png" width="400" border="0"></a> </p>
<p>I just found a great new album (well it&#8217;s 2008&#8230;but&#8230;). Just in time for the upcoming summer. Thanks very much for that great music. </p>
<p>Oh &#8211; it&#8217;s free &#8211; if YOU want it &#8211; just click the link and download it &#8211; it&#8217;s great, have I mentioned that?</p>
<p>Source: <a title="http://www.sean-fournier.com/ohmy/" href="http://www.sean-fournier.com/ohmy/">http://www.sean-fournier.com/ohmy/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2009/05/08/sean-fournier-oh-my/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create an m4b iTunes compatible audiobook from a cd</title>
		<link>http://www.schrankmonster.de/2008/10/14/how-to-create-an-m4b-itunes-compatible-audiobook-from-a-cd/</link>
		<comments>http://www.schrankmonster.de/2008/10/14/how-to-create-an-m4b-itunes-compatible-audiobook-from-a-cd/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 08:49:28 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/10/14/HowToCreateAnM4bITunesCompatibleAudiobookFromACd.aspx</guid>
		<description><![CDATA[Let&#8217;s say you&#8217;re like me: You got several audiobooks on CD over the years and you even ripped several of these to listen to them in your MP3 player/car. So what I have is a number of audiobooks ripped as mp3s on my harddisk looking something like this: If you only have the CD what [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s say you&#8217;re like me: You got several audiobooks on CD over the years and you even ripped several of these to listen to them in your MP3 player/car. </p>
<p>So what I have is a number of audiobooks ripped as mp3s on my harddisk looking something like this:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howtocreateanm4biTunescompatibleaudioboo_9D34/crnan1.png" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="138" alt="crnan1" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howtocreateanm4biTunescompatibleaudioboo_9D34/crnan1_thumb.png" width="248" border="0"></a> </p>
<p>If you only have the CD what you would like to do is rip the whole CD as ONE large m4a AAC encoded audiofile. We need it to be an m4a because we later want to inject chapter marks. If you have this big AAC file just skip the next few steps. But if you got those several small mp3 files &#8211; one for each chapter you want to merge them together and reencode them as m4a AAC.</p>
<p>There is a great free tool to merge these mp3 files together. It&#8217;s called (who would have thought) <a href="http://www.shchuka.com/software/mergemp3" target="_blank">Merge MP3</a> and is available completely for free. It&#8217;ll create one big mp3 file out of your several small ones.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howtocreateanm4biTunescompatibleaudioboo_9D34/mergemp3nan.png" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="298" alt="mergemp3nan" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howtocreateanm4biTunescompatibleaudioboo_9D34/mergemp3nan_thumb.png" width="400" border="0"></a> </p>
<p>After you got that huge mp3 file you want to convert it into a m4a file with AAC encoding. I recommend using iTunes.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howtocreateanm4biTunescompatibleaudioboo_9D34/itunesconvertnan.png" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="50" alt="itunesconvertnan" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howtocreateanm4biTunescompatibleaudioboo_9D34/itunesconvertnan_thumb.png" width="404" border="0"></a> </p>
<p>When you got that one huge m4a file you want to load it into a tool called <a href="http://www.rightword.com.au/products/chaptermaster/download.asp" target="_blank">Chapter Master</a>. It&#8217;s not free and will set you back $15 but it&#8217;s worth as I did not find anything else that was a) that cheap b) that comfortable c) working.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howtocreateanm4biTunescompatibleaudioboo_9D34/chaptermasternan.png" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="304" alt="chaptermasternan" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howtocreateanm4biTunescompatibleaudioboo_9D34/chaptermasternan_thumb.png" width="308" border="0"></a> </p>
<p align="left">Load the m4a file into Chapter Master, add the chapters in the right order and at the right time. Eventually you want to add an album art picture. Click save and you&#8217;re done.</p>
<p align="left">The resulting file is a m4b file recognized by iTunes as an audiobook with chapters.</p>
<p>Source 1: <a title="http://www.shchuka.com/software/mergemp3" href="http://www.shchuka.com/software/mergemp3">http://www.shchuka.com/software/mergemp3</a><br />Source 2: <a title="http://www.rightword.com.au/products/chaptermaster/download.asp" href="http://www.rightword.com.au/products/chaptermaster/download.asp">http://www.rightword.com.au/products/chaptermaster/download.asp</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/10/14/how-to-create-an-m4b-itunes-compatible-audiobook-from-a-cd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>We got us an iPod Touch&#8230;</title>
		<link>http://www.schrankmonster.de/2008/09/29/we-got-us-an-ipod-touch/</link>
		<comments>http://www.schrankmonster.de/2008/09/29/we-got-us-an-ipod-touch/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 12:44:56 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>
		<category><![CDATA[travelling]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/29/WeGotUsAnIPodTouch.aspx</guid>
		<description><![CDATA[After the last update and the fact that I am locked into iTunes (using it for more than 5 years&#8230;having rated almost 70% of my huge library&#8230;) I decided to buy an iPod at the beginning of this year. Sadly there was only the big and heavy iPod classic that looked promising since the touch [...]]]></description>
			<content:encoded><![CDATA[<p>After the last update and the fact that I am locked into iTunes (using it for more than 5 years&#8230;having rated almost 70% of my huge library&#8230;) I decided to buy an iPod at the beginning of this year. Sadly there was only the big and heavy iPod classic that looked promising since the touch was way to expensive. </p>
<p>I thought about things like: Would I need my whole library or would it suffice to have 8/16/32 GB of it? Do I want to have additional applications or just a music player?</p>
<p>After the last update several things came together to a conclusion: </p>
<ul>
<li>There&#8217;s not a 160 GB iPod anymore. Since my library is almost that I wouldn&#8217;t be able to put my library on a 120 GB classic.
<li>The touch is cheaper now
<li>mostly I am listening to podcasts, which I do need to by in sync all the time, that means: remaining playtime sync and syncing without manual work</li>
</ul>
<p>Since my wife doesn&#8217;t like the look of the new nano we decided to get the 16 GB Touch.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/IgotusaniPodTouch_E501/ipodtouch_2.png" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="404" alt="ipodtouch" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/IgotusaniPodTouch_E501/ipodtouch_thumb.png" width="330" border="0"></a> </p>
<p>It was delivered today and I am hugely impressed with it so far. It&#8217;s what I wanted and the way I wanted it. The feature of having my podcasts and audiobooks start/stop positions synced is just fantastic (listening to the first 20 minutes on the go and the rest at home is now possible because the position where I stopped listening on the iPod is synced to the iTunes).</p>
<p>Did I mention that we took the engraving option?</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/IgotusaniPodTouch_E501/ipodtouchback_2.png" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="213" alt="ipodtouchback" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/IgotusaniPodTouch_E501/ipodtouchback_thumb.png" width="404" border="0"></a><br /><a href="http://en.wikipedia.org/wiki/Yo_Ho_(A_Pirate%27s_Life_for_Me)" target="_blank">Yo Ho!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/29/we-got-us-an-ipod-touch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Software .NET managed DSP for Audio and &#8230;</title>
		<link>http://www.schrankmonster.de/2008/09/08/software-net-managed-dsp-for-audio-and/</link>
		<comments>http://www.schrankmonster.de/2008/09/08/software-net-managed-dsp-for-audio-and/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 17:22:20 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/08/SoftwareNETManagedDSPForAudioAnd.aspx</guid>
		<description><![CDATA[As you may or may not know I am working on a gateway tool for citizen band radio. For this tool I was asked if it would be possible to build a tone detection, maybe more, into my software. And on the way of finding out how to accomplish this I stumbles across several very [...]]]></description>
			<content:encoded><![CDATA[<p>As you may or may not know I am working on a gateway tool for citizen band radio. For this tool I was asked if it would be possible to build a tone detection, maybe more, into my software. And on the way of finding out how to accomplish this I stumbles across several very interesting things.</p>
<p>Like this peakmeter control which uses a software digital signal processing or a software dsp library &#8211; everything written entirely in managed code (C#) and both open source. Both examples show that you can use digital signal processing for audio and image content&#8230; and for more.</p>
<p>The <a href="http://www.codeproject.com/KB/audio-video/PeakMeterCS.aspx" target="_blank">peakmeter control</a>:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Software.NETmanagedDSPforAudioand_13F5F/micsourcediag_2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="190" alt="micsourcediag" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Software.NETmanagedDSPforAudioand_13F5F/micsourcediag_thumb.jpg" width="404" border="0"></a> </p>
<p><em>&#8220;DSP processing is very interesting subject to learn and work with. This block receives digital samples from the source. It approximates the original waveform and finds its peak magnitudes.<br />Since I would not be able to go in details about how FFT (Fast Fourier Transform) works in this article, I recommend the interested reader to visit some of the links in the reference section to increase his/her knowledge about this process.&#8221;</em></p>
<p>The <a href="http://www.exocortex.org/dsp/" target="_blank">software DSP library</a>:</p>
<p align="left"><em>&#8220;A C# open source library that provides fully featured (1) single and double precision complex number data types, (2) complex number math library, (3) 1D, 2D and 3D complex and real symmetric fast Fourier transforms, and (4) highly accurate statistical routines.  The library is optimized for both speed and numerical accuracy.  The reason that this library is called a &#8220;Digital Signal Processing&#8221; library is because complex numbers, FFTs and statistical functions form the basis of any DSP library &#8212; although it is the hope that this library will continue to evolve to a more full fledged DSP library.&#8221;</em></p>
<p><em></em><b>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Software.NETmanagedDSPforAudioand_13F5F/image_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="277" alt="image" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Software.NETmanagedDSPforAudioand_13F5F/image_thumb.png" width="298" border="0"></a> </b></p>
<p align="left">Source 1: <a title="http://www.codeproject.com/KB/audio-video/PeakMeterCS.aspx" href="http://www.codeproject.com/KB/audio-video/PeakMeterCS.aspx">http://www.codeproject.com/KB/audio-video/PeakMeterCS.aspx</a><br />Source 2: <a title="http://www.exocortex.org/dsp/" href="http://www.exocortex.org/dsp/">http://www.exocortex.org/dsp/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/08/software-net-managed-dsp-for-audio-and/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And this Airfoil thing even works with my remote control&#8230;</title>
		<link>http://www.schrankmonster.de/2008/09/01/and-this-airfoil-thing-even-works-with-my-remote-control/</link>
		<comments>http://www.schrankmonster.de/2008/09/01/and-this-airfoil-thing-even-works-with-my-remote-control/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 22:11:39 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[makes-my-day]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/01/AndThisAirfoilThingEvenWorksWithMyRemoteControl.aspx</guid>
		<description><![CDATA[&#8230; oh even more joy!]]></description>
			<content:encoded><![CDATA[<p>&#8230; oh even more joy!</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AndthisAirfoilthingevenworkswithmyremot_1EEF/IMG_2679.jpg" target="_blank"><img style="border: 0px none ;" alt="IMG_2679" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AndthisAirfoilthingevenworkswithmyremot_1EEF/IMG_2679_thumb.jpg" border="0" height="304" width="404"></a> </p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AndthisAirfoilthingevenworkswithmyremot_1EEF/IMG_2680.jpg" target="_blank"><img style="border: 0px none ;" alt="IMG_2680" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AndthisAirfoilthingevenworkswithmyremot_1EEF/IMG_2680_thumb.jpg" border="0" height="304" width="404"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/01/and-this-airfoil-thing-even-works-with-my-remote-control/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I finally got my low latency network audio solution</title>
		<link>http://www.schrankmonster.de/2008/09/01/i-finally-got-my-low-latency-network-audio-solution/</link>
		<comments>http://www.schrankmonster.de/2008/09/01/i-finally-got-my-low-latency-network-audio-solution/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 18:30:45 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Modding]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/09/01/IFinallyGotMyLowLatencyNetworkAudioSolution.aspx</guid>
		<description><![CDATA[In May 2005 I wrote about a wish I had for years: &#8220;As usual I&#8217;ve got a very strange wish what nobody else seems to have on this planet. I have several computers of different platforms. And on one of this machines there are speakers attached&#8230;I want to have the possibility to output from any [...]]]></description>
			<content:encoded><![CDATA[<p>In May 2005 I wrote about a wish I had for years:</p>
<p><em>&#8220;As usual I&#8217;ve got a very strange wish what nobody else seems to have on this planet. I have several computers of different platforms. And on one of this machines there are speakers attached&#8230;I want to have the possibility to output from any of the machines to the speakers. And please loss-less and low latency!&#8221;</em></p>
<p>It took more than 3 years to fulfill this particular wish. But now it&#8217;s done. In 2005 I mentioned the Airfoil software that could run on MacOS X and forward sound from almost every application to an AirTunes compatible device. As it turns out Rogue Amoeba did their homework and created a free &#8220;Airfoil Speakers&#8221; application which can be used on Windows and MacOS X. </p>
<p>So the things are simple: Start the speaker application on a machine that is in the same network/subnet as the Airfoil master. The virtual speaker is then displayed on the master machine and you can assign a sound source from that machine to the speaker. Hmm&#8230; Simple Setup sample: One machine is in my kitchen (Windows XP machine) and one machine is on my desk &#8211; an iMac. In the kitchen only the speaker application is started and the iMac instantly &#8220;sees&#8221; the speaker. One click and the sound output of my desk machine is forwarded through the network to the kitchen&#8230; Easy and cool. One can think of any other combination of Speaker/Master application &#8211; even multiple speakers can be powered by one master&#8230;oh joy!</p>
<p>So here is what the master looks like:</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Ifinallygotmylowlatencynetworkaudiosolut_13C9A/airfoil_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="281" alt="airfoil" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Ifinallygotmylowlatencynetworkaudiosolut_13C9A/airfoil_thumb.png" width="398" border="0"></a> </p>
<p align="left">and this is what it looks like on a client (speaker):</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Ifinallygotmylowlatencynetworkaudiosolut_13C9A/airfoil2.jpg" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="189" alt="airfoil2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Ifinallygotmylowlatencynetworkaudiosolut_13C9A/airfoil2_thumb.jpg" width="400" border="0"></a> </p>
<p>Source 1: <a title="http://www.schrankmonster.de/PermaLink,guid,23cebd7b-22be-47b3-bf81-c01324f639c8.aspx" href="http://www.schrankmonster.de/PermaLink,guid,23cebd7b-22be-47b3-bf81-c01324f639c8.aspx" target="_blank">nerd wish of 2005</a><br />Source 2: <a title="http://rogueamoeba.com/airfoil/" href="http://rogueamoeba.com/airfoil/">http://rogueamoeba.com/airfoil/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/09/01/i-finally-got-my-low-latency-network-audio-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bootie &#8211; bootleg mashup music</title>
		<link>http://www.schrankmonster.de/2008/07/30/bootie-bootleg-mashup-music/</link>
		<comments>http://www.schrankmonster.de/2008/07/30/bootie-bootleg-mashup-music/#comments</comments>
		<pubDate>Wed, 30 Jul 2008 10:13:31 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/30/bootieBootlegMashupMusic.aspx</guid>
		<description><![CDATA[What is a mashup? Wikipedia: &#8220;A mashup or bootleg[1] is a song or composition created from the combination of the music from one song with the a cappella from another (also mash up and mash-up). These songs may be considered part of the European bastard pop musical genre. &#8220;A mash-up is a song created out [...]]]></description>
			<content:encoded><![CDATA[<p>What is a mashup? <a href="http://en.wikipedia.org/wiki/Mashup_(music)" target="_blank">Wikipedia</a>:</p>
<p><em>&#8220;A <b>mashup</b> or <b>bootleg</b><sup><a href="http://en.wikipedia.org/wiki/Mashup_%28music%29#cite_note-0">[1]</a></sup> is a song or composition created from the combination of the music from one song with the </em><a href="http://en.wikipedia.org/wiki/A_cappella"><em>a cappella</em></a><em> from another (also <b>mash up</b> and <b>mash-up</b>). These songs may be considered part of the European <b>bastard pop</b> </em><a href="http://en.wikipedia.org/wiki/Musical_genre"><em>musical genre</em></a><em>. &#8220;A mash-up is a song created out of pieces of two or more songs, usually by overlaying the vocal track of one song seamlessly over the music track of another&#8230; Mash-ups are incredible fun and a fascinating way to reexperience some of your favorite tunes.&#8221;"</em></p>
<p>And there is this website &#8211; offering over 200 tracks and extras around the mashup theme &#8211; even best-of-samplers are available:</p>
<p align="center"><a href="http://www.bootieusa.com/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="204" alt="BestOfBootie" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/bootiebootlegmashupmusic_C80E/BestOfBootie_3.jpg" width="204" border="0"></a> <a href="http://www.bootieusa.com/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="204" alt="BestOfBootie2006_CD" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/bootiebootlegmashupmusic_C80E/BestOfBootie2006_CD_3.jpg" width="204" border="0"></a> </p>
<p align="center"><a href="http://www.bootieusa.com/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="204" alt="BestOfBootie2007_CD" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/bootiebootlegmashupmusic_C80E/BestOfBootie2007_CD_3.jpg" width="204" border="0"></a> </p>
<p>Source 1: <a title="http://en.wikipedia.org/wiki/Mashup_(music)" href="http://en.wikipedia.org/wiki/Mashup_(music)">http://en.wikipedia.org/wiki/Mashup_(music)</a><br />Source 2: <a title="http://www.bootieusa.com/" href="http://www.bootieusa.com/">http://www.bootieusa.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/30/bootie-bootleg-mashup-music/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to use the intertubes to display music videos along your ordinary music</title>
		<link>http://www.schrankmonster.de/2008/07/24/how-to-use-the-intertubes-to-display-music-videos-along-your-ordinary-music/</link>
		<comments>http://www.schrankmonster.de/2008/07/24/how-to-use-the-intertubes-to-display-music-videos-along-your-ordinary-music/#comments</comments>
		<pubDate>Thu, 24 Jul 2008 06:07:37 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/24/HowToUseTheIntertubesToDisplayMusicVideosAlongYourOrdinaryMusic.aspx</guid>
		<description><![CDATA[If you got a Mac (and that&#8217;s the platform it&#8217;s only running on) and if you&#8217;re using iTunes to listen to your music you probably want to give this Dashboard Widget a try &#8211; it automatically searches the music video which supposedly belongs to the music you&#8217;re currently listening to and plays it in a [...]]]></description>
			<content:encoded><![CDATA[<p>If you got a Mac (and that&#8217;s the platform it&#8217;s only running on) and if you&#8217;re using iTunes to listen to your music you probably want to give this Dashboard Widget a try &#8211; it automatically searches the music video which supposedly belongs to the music you&#8217;re currently listening to and plays it in a small window on the dashboard:
<p><em>&#8220;YouTube has stacks and stacks of music videos on their website. I have written a little dashboard widget called iTube. iTube gets the artist and title of the song you are playing in iTunes. It then performs a search on youtube and plays the first hit in the widget window. Once installed iTube works by itself in the background, so start a song up iTunes then look at your dashboard and with a little luck you’ll be watching what you are listening to.&#8221;</em>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howtousetheintertubestodisplaymusicvideo_919A/itube_2.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="itube" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/Howtousetheintertubestodisplaymusicvideo_919A/itube_thumb.jpg" width="404" border="0"></a> </p>
<p align="left">Source: <a title="http://philipandrews.org/blog/itube/" href="http://philipandrews.org/blog/itube/">http://philipandrews.org/blog/itube/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/24/how-to-use-the-intertubes-to-display-music-videos-along-your-ordinary-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Radioheads &#8220;House of Cards&#8221; music video + raw data released under CC license</title>
		<link>http://www.schrankmonster.de/2008/07/17/radioheads-house-of-cards-music-video-raw-data-released-under-cc-license/</link>
		<comments>http://www.schrankmonster.de/2008/07/17/radioheads-house-of-cards-music-video-raw-data-released-under-cc-license/#comments</comments>
		<pubDate>Thu, 17 Jul 2008 19:38:21 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Movies]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/17/RadioheadsHouseOfCardsMusicVideoRawDataReleasedUnderCCLicense.aspx</guid>
		<description><![CDATA[I seriously don&#8217;t know why they are doing that &#8211; it&#8217;s not as if any material released previously came to any notice so far &#8211; but what the heck &#8211; Radiohead decided to put their current music video (which isn&#8217;t bad) and the raw data that was used to create it to the public using [...]]]></description>
			<content:encoded><![CDATA[</p>
<p>I seriously don&#8217;t know why they are doing that &#8211; it&#8217;s not as if any material released previously came to any notice so far &#8211; but what the heck &#8211; Radiohead decided to put their current music video (which isn&#8217;t bad) and the raw data that was used to create it to the public using the Creative Commons license:</p>
<p><em>&#8220;The animation data used to make the video are licensed to the public under a </em><a href="http://creativecommons.org/weblog/licenses/by-nc-sa/3.0/"><em>Creative Commons Attribution-Noncommercial-Share Alike</em></a><em> license at </em><a href="http://code.google.com/p/radiohead/"><em>Google Code</em></a><em>. This means you are free to use the data to make your own video projects, as long as you abide by the CC license’s conditions. (To be clear, the song and its accompanying video are not under CC license; the data used to make the video are.)&#8221;</em></p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/RadioheadsHouseofCardsmusicvideorawdatar_1381B/houseofcards_radiohead.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="259" alt="houseofcards_radiohead" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/RadioheadsHouseofCardsmusicvideorawdatar_1381B/houseofcards_radiohead_thumb.png" width="404" border="0"></a> </p>
<p>Source: <a title="http://code.google.com/creative/radiohead/" href="http://code.google.com/creative/radiohead/">http://code.google.com/creative/radiohead/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/17/radioheads-house-of-cards-music-video-raw-data-released-under-cc-license/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>new single from Emiliana Torrini &#8211; (free download)</title>
		<link>http://www.schrankmonster.de/2008/07/10/new-single-from-emiliana-torrini-free-download/</link>
		<comments>http://www.schrankmonster.de/2008/07/10/new-single-from-emiliana-torrini-free-download/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 23:04:16 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/07/10/newSingleFromEmilianaTorriniFreeDownload.aspx</guid>
		<description><![CDATA[&#8220;Following on from her critically acclaimed sets &#8216;Love In The Time Of Science&#8217; and her first for Rough Trade &#8216;Fisherman&#8217;s Woman&#8217;, the forthcoming &#8216;Me And Armini&#8217; (released 8th September) sees her working once again with her long time producer/collaborator Dan Carey resulting in what we feel is destined to be one of the albums of [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><em><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="emiliana" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/newsinglefromEmilianaTorrinifreedownload_1D1E/emiliana_3.jpg" width="238" border="0"> </em></p>
<p><em>&#8220;Following on from her critically acclaimed sets &#8216;Love In The Time Of Science&#8217; and her first for Rough Trade &#8216;Fisherman&#8217;s Woman&#8217;, the forthcoming &#8216;Me And Armini&#8217; (released 8th September) sees her working once again with her long time producer/collaborator Dan Carey resulting in what we feel is destined to be one of the albums of 2008. </em>
<p><em>&#8216;Me And Armini&#8217; is a hugely ambitious and aspirational pop record with Emiliana’s soaring voice centre stage, bolstered by a rich gamut of musical styles. From the summery skank of the title track to the surging, breathless, first single &#8216;Jungle Drum&#8217; (released 29th September) and yearning, spine-tingling &#8216;Big Jumps&#8217; and much more in between &#8216;Me And Armini&#8217; is a truly fantastic album. </em>
<p><em>&#8216;Me And Armini&#8217; will be released as a digital single in the US exclusively via iTunes on 19th August, with the album of the same name to follow on 9th September. &#8220;</em>
<p align="center"><a href="http://www.arjanwrites.com/arjanwrites/2008/07/free-download-e.html" target="_blank">Download the song &#8220;Me and Armini&#8221; here.</a>
<p>Source 1: <a title="http://www.arjanwrites.com/arjanwrites/2008/07/free-download-e.html" href="http://www.arjanwrites.com/arjanwrites/2008/07/free-download-e.html">http://www.arjanwrites.com/arjanwrites/2008/07/free-download-e.html</a><br />Source 2: <a title="http://www.myspace.com/emilianatorrini" href="http://www.myspace.com/emilianatorrini">http://www.myspace.com/emilianatorrini</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/07/10/new-single-from-emiliana-torrini-free-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>basically beautiful</title>
		<link>http://www.schrankmonster.de/2008/05/11/basically-beautiful/</link>
		<comments>http://www.schrankmonster.de/2008/05/11/basically-beautiful/#comments</comments>
		<pubDate>Sun, 11 May 2008 23:28:29 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[graphics]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/05/11/basicallyBeautiful.aspx</guid>
		<description><![CDATA[There&#8217;s this tool called &#8220;Processing&#8221;&#8230;apparently you can create stunning things with it: Weird Fishes: Arpeggi from flight404 on Vimeo. The video was created by flight404 using Processing&#8230; &#8220;Processing is an open source programming language and environment for people who want to program images, animation, and interactions. It is used by students, artists, designers, researchers, and [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s this tool called &#8220;Processing&#8221;&#8230;apparently you can create stunning things with it:</p>
<div align="center"><object type="application/x-shockwave-flash" height="276" width="400" data="http://www.vimeo.com/moogaloop.swf?clip_id=935317&#038;server=www.vimeo.com&#038;fullscreen=1&#038;show_title=1&#038;show_byline=1&#038;show_portrait=0&#038;color="></object>    <br /><a href="http://www.vimeo.com/935317?pg=embed&#038;sec=935317">Weird Fishes: Arpeggi</a> from <a href="http://www.vimeo.com/flight404?pg=embed&#038;sec=935317">flight404</a> on <a href="http://vimeo.com?pg=embed&#038;sec=935317">Vimeo</a>. </div>
<p>The video was created by flight404 using Processing&#8230;</p>
<p><em>&#8220;Processing is an open source programming language and environment for people who want to program images, animation, and interactions. It is used by students, artists, designers, researchers, and hobbyists for learning, prototyping, and production. It is created to teach fundamentals of computer programming within a visual context and to serve as a software sketchbook and professional production tool. Processing is developed by artists and designers as an alternative to proprietary software tools in the same domain.&#8221;</em></p>
<p>Source 1: <a title="http://www.flight404.com/blog/?cat=1" href="http://www.flight404.com/blog/?cat=1">http://www.flight404.com/blog/?cat=1</a>     <br />Source 2: <a title="http://processing.org/download/index.html" href="http://processing.org/download/index.html">http://processing.org/download/index.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/05/11/basically-beautiful/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>publish your iTunes library on your network without actually using iTunes on the client</title>
		<link>http://www.schrankmonster.de/2008/03/08/publish-your-itunes-library-on-your-network-without-actually-using-itunes-on-the-client/</link>
		<comments>http://www.schrankmonster.de/2008/03/08/publish-your-itunes-library-on-your-network-without-actually-using-itunes-on-the-client/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 10:26:23 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/03/08/publishYourITunesLibraryOnYourNetworkWithoutActuallyUsingITunesOnTheClient.aspx</guid>
		<description><![CDATA[There&#8217;s a new version of Dot.Tunes out which is now available for free. That&#8217;s good news and if you ever wanted to access your iTunes Library and you were not in Bonjour range&#8230;try this great tool! &#8220;DOT.TUNES is not some lightweight iTunes utility. It&#8217;s a fully developed web server application that supports MP3, AAC, AIFF, [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a new version of Dot.Tunes out which is now available for free. That&#8217;s good news and if you ever wanted to access your iTunes Library and you were not in Bonjour range&#8230;try this great tool!</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/publishyouriTuneslibraryonyournetworkwit_9F77/Bild%201_2.png" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="322" alt="Bild 1" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/publishyouriTuneslibraryonyournetworkwit_9F77/Bild%201_thumb.png" width="404" border="0" /></a> </p>
<p><em>&#8220;DOT.TUNES is not some lightweight iTunes utility. It&#8217;s a fully developed web server application that supports MP3, AAC, AIFF, WAV, MPEG, MP4, and MOV files, allowing you to share your iTunes library contents with your friends in other cities, your classmates across the dorm or the coworkers scattered throughout the building. DOT.TUNES contains a custom web server designed specifically to serve the audio tracks from your iTunes at lightning fast speeds. Through seamless integration with your iTunes base, DOT.TUNES easily handles large libraries without missing a beat.&#8221;</em></p>
<p>I tried it and it&#8217;s working quite well &#8211; especially if you consider that there&#8217;s a bunch of plugins available.(which you have to pay for)</p>
<p>Source: <a title="http://www.dottunes.net" href="http://www.dottunes.net">http://www.dottunes.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/03/08/publish-your-itunes-library-on-your-network-without-actually-using-itunes-on-the-client/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mercedes Benz Mixed Tape 19 available&#8230;</title>
		<link>http://www.schrankmonster.de/2008/03/01/mercedes-benz-mixed-tape-19-available/</link>
		<comments>http://www.schrankmonster.de/2008/03/01/mercedes-benz-mixed-tape-19-available/#comments</comments>
		<pubDate>Sat, 01 Mar 2008 20:50:53 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/03/01/MercedesBenzMixedTape19Available.aspx</guid>
		<description><![CDATA[The previously discontinued Mixed Tape is back! They even started to make a whole show centered around the current mixed tape. Get it now! Source: http://www.mercedes-benz.tv/mixedtape]]></description>
			<content:encoded><![CDATA[<p>The previously discontinued Mixed Tape is back!</p>
<p align="center"><a href="http://www.mercedes-benz.tv/mixedtape" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="232" alt="mixedtape19" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/MercedesBenzMixedTape19available_131D6/mixedtape19_3.jpg" width="404" border="0" /></a></p>
<p align="left">They even started to make a whole show centered around the current mixed tape.</p>
<p align="left">Get it now!</p>
<p align="center"><a href="http://www.mercedes-benz.tv/mixedtape"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="228" alt="mixedtape19_2" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/MercedesBenzMixedTape19available_131D6/mixedtape19_2_3.jpg" width="244" border="0" /></a> </p>
<p align="left">Source: <a title="http://www.mercedes-benz.tv/mixedtape" href="http://www.mercedes-benz.tv/mixedtape">http://www.mercedes-benz.tv/mixedtape</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/03/01/mercedes-benz-mixed-tape-19-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>the brand new Morcheeba album is available&#8230;</title>
		<link>http://www.schrankmonster.de/2008/02/05/the-brand-new-morcheeba-album-is-available/</link>
		<comments>http://www.schrankmonster.de/2008/02/05/the-brand-new-morcheeba-album-is-available/#comments</comments>
		<pubDate>Tue, 05 Feb 2008 23:42:18 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2008/02/05/theBrandNewMorcheebaAlbumIsAvailable.aspx</guid>
		<description><![CDATA[Hurray! The wait is over and the brand new Morcheeba album is spinning in my players&#8230;thank you cd dealer for breaking the street date &#8230; hrhr! It&#8217;s called &#8220;Dive Deep&#8221; and is the first album presenting different vocal artists each song. I am missing Skye Edwards voice but with all the variation on this album [...]]]></description>
			<content:encoded><![CDATA[<p>Hurray! The wait is over and the brand new <a href="http://www.morcheeba.net/" target="_blank">Morcheeba</a> album is spinning in my players&#8230;thank you cd dealer for breaking the street date &#8230; hrhr!</p>
<p>It&#8217;s called &#8220;Dive Deep&#8221; and is the first album presenting different vocal artists each song. I am missing Skye Edwards voice but with all the variation on this album it&#8217;s back to the roots as if Skye was there.</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/thebrandnewMorcheebaalbumisavailable_83B/divedeep_2.jpg"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="244" alt="divedeep" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/thebrandnewMorcheebaalbumisavailable_83B/divedeep_thumb.jpg" width="240" border="0" /></a> </p>
<p align="left">Source: <a href="http://www.morcheeba.net">http://www.morcheeba.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2008/02/05/the-brand-new-morcheeba-album-is-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>want some ebm-industrial music? Lascif Corpse live!</title>
		<link>http://www.schrankmonster.de/2007/05/15/want-some-ebm-industrial-music-lascif-corpse-live/</link>
		<comments>http://www.schrankmonster.de/2007/05/15/want-some-ebm-industrial-music-lascif-corpse-live/#comments</comments>
		<pubDate>Tue, 15 May 2007 23:32:20 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[FeM]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>
		<category><![CDATA[TU-Ilmenau]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2007/05/15/wantSomeEbmindustrialMusicLascifCorpseLive.aspx</guid>
		<description><![CDATA[It seems that tomorrow &#8220;Lascif Corpse&#8221; going to do a gig in Ilmenau and I want to encourage you to see them live on stage in the BI-Club(admission is 2€ reduced /4€ full). If you cannot drop by you also can tune into the live stream the FeM Streaming Team is going to send out [...]]]></description>
			<content:encoded><![CDATA[<p>It seems that tomorrow &#8220;Lascif Corpse&#8221; going to do a gig in Ilmenau and I want to encourage you to see them live on stage in the <a href="http://bi-club.de/" target="_blank">BI-Club</a>(admission is 2€ reduced /4€ full).</p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/wantsomeebmindustrialmusicLascifCorpseli_152D/background%5B1%5D.jpg"><img style="border: 0px none ;" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/wantsomeebmindustrialmusicLascifCorpseli_152D/background_thumb%5B1%5D.jpg" border="0" height="300" width="400"></a></p>
<p>If you cannot drop by you also can tune into the live stream the <a href="http://streaming.fem.tu-ilmenau.de">FeM Streaming Team</a> is going to send out over the intertubes. Yes that&#8217;s right: the complete concert is available through a live stream.</p>
<p>Tune into the <a href="mms://streaming-internet.fem.tu-ilmenau.de/bi-club" target="_blank">live stream</a> around 2200 CEST and watch a great concert&#8230;</p>
<p>Until that go to <a href="http://www.myspace.com/lascifcorpse" target="_blank">their mySpace site</a> and listen to some songs&#8230;</p>
<p>Source 1: <a title="http://www.lascif-corpse.de/" href="http://www.lascif-corpse.de/">http://www.lascif-corpse.de/</a><br />Source 2: <a title="http://bi-club.de/" href="http://bi-club.de/">http://bi-club.de/</a><br />Source 3: <a title="http://www.myspace.com/lascifcorpse" href="http://www.myspace.com/lascifcorpse">http://www.myspace.com/lascifcorpse</a> <br />Source 4: <a title="mms://streaming-internet.fem.tu-ilmenau.de/bi-club" href="mms://streaming-internet.fem.tu-ilmenau.de/bi-club">mms://streaming-internet.fem.tu-ilmenau.de/bi-club</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2007/05/15/want-some-ebm-industrial-music-lascif-corpse-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>if I&#8217;ll ever need a multi-track audio tool again&#8230;</title>
		<link>http://www.schrankmonster.de/2007/05/01/if-ill-ever-need-a-multi-track-audio-tool-again/</link>
		<comments>http://www.schrankmonster.de/2007/05/01/if-ill-ever-need-a-multi-track-audio-tool-again/#comments</comments>
		<pubDate>Tue, 01 May 2007 19:24:28 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2007/05/01/ifIllEverNeedAMultitrackAudioToolAgain.aspx</guid>
		<description><![CDATA[This post is more of a reminder for myself. I need to remember that obviously great multi-track audio application that just became available. &#8220;Ardour is a digital audio workstation. You can use it to record, edit and mix multi-track audio. You can produce your own CDs, mix video soundtracks, or just experiment with new ideas [...]]]></description>
			<content:encoded><![CDATA[<p>This post is more of a reminder for myself. <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  I need to remember that obviously great multi-track audio application that just became available.
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/ifIlleverneedamultitrackaudiotoolagain_11D5B/mainscreenshotbig2.png" target="_blank"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="150" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/ifIlleverneedamultitrackaudiotoolagain_11D5B/mainscreenshotbig_thumb2.png" width="400" border="0"></a></p>
<p>&#8220;Ardour is a digital audio workstation. You can use it to record, edit and mix multi-track audio. You can produce your own CDs, mix video soundtracks, or just experiment with new ideas about music and sound.
<p>Ardour capabilities include: multichannel recording, non-destructive editing with unlimited undo/redo, full automation support, a powerful mixer, unlimited tracks/busses/plugins, timecode synchronization, and hardware control from surfaces like the Mackie Control Universal. If you&#8217;ve been looking for a tool similar to ProTools, Nuendo, Pyramix, or Sequoia, you might have found it.
<p>Above all, Ardour strives to meet the needs of professional users. This means implementing all the &#8220;hard stuff&#8221; that other DAWs ( even some leading commercial apps ) handle incorrectly or not at all. Ardour has a completely flexible &#8220;anything to anywhere&#8221; routing system, and will allow as many physical I/O ports as your system allows. Ardour supports a wide range of audio-for-video features such as video-synced playback and pullup/pulldown sample rates. You will also find powerful features such as &#8220;persistent undo&#8221;, multi-language support, and destructive track punching modes that aren&#8217;t available on other platforms.&#8221;
<p>Source: <a title="http://www.ardour.org/" href="http://www.ardour.org/">http://www.ardour.org/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2007/05/01/if-ill-ever-need-a-multi-track-audio-tool-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>want great music today? try Silje Nergaard.</title>
		<link>http://www.schrankmonster.de/2007/03/01/want-great-music-today-try-silje-nergaard/</link>
		<comments>http://www.schrankmonster.de/2007/03/01/want-great-music-today-try-silje-nergaard/#comments</comments>
		<pubDate>Thu, 01 Mar 2007 23:41:50 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2007/03/01/wantGreatMusicTodayTrySiljeNergaard.aspx</guid>
		<description><![CDATA[I am in the middle of a jolly exiting jazz-swing-neo-whatever phase when it comes to the music I am listening these days. There&#8217;s &#8220;Big Bad Voodoo Daddy&#8221; &#8211; a band which I will talk more about in the next days and there&#8217;s one (for me) very very new &#8220;Silje Nergaard (born June 19, 1966 in [...]]]></description>
			<content:encoded><![CDATA[</p>
<p>I am in the middle of a jolly exiting jazz-swing-neo-whatever phase when it comes to the music I am listening these days. There&#8217;s &#8220;Big Bad Voodoo Daddy&#8221; &#8211; a band which I will talk more about in the next days and there&#8217;s one (for me) very very new
<p align="center"><a href="http://www.siljenergaard.com/" target="_blank"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="258" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/wantgreatmusictodaytrySiljeNergaard_98C/siljenergaard%5B3%5D.jpg" width="400" border="0"></a></p>
<p>&#8220;Silje Nergaard (born June 19, 1966 in Steinkjer, Norway), is a very successful Norwegian pop and jazz musician. While some very old titles of her (e. g. Si det, si det from 1985) rather have a distinct pop feel, she has now almost completely given up making pop music, which is the reason why virtually the entirety of her later releases consists of jazzy tunes.&#8221;
<p>Want to get an impression of one of my favourite songs of her (it&#8217;s &#8220;You Send Me Flowers&#8221;) ? Go ahead:
<p align="center"><embed name="lfmPlayer" pluginspage="http://www.macromedia.com/go/getflashplayer" align="middle" src="http://static.last.fm/webclient/41/defaultEmbedPlayer_previews.swf" width="340" height="103" type="application/x-shockwave-flash" quality="high" bgcolor="#FFF" flashvars="lfmMode=playlist&#038;resourceID=1051630&#038;resourceType=6&#038;firstTrackName=You+send+me+Flowers&#038;firstArtistName=Silje+Nergaard&#038;albumArt=http://images.amazon.com/images/P/B00005UOVE.01.MZZZZZZZ.jpg&#038;restDuration=30" wmode="transparent" swliveconnect="true" allowscriptaccess="always"></p>
<p align="center">(thanks to <a href="http://www.last.fm/" target="_blank">last.fm</a>) </p>
<p align="left">Source: <a title="http://www.siljenergaard.com/" href="http://www.siljenergaard.com/">http://www.siljenergaard.com/</a></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2007/03/01/want-great-music-today-try-silje-nergaard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>finally using last.fm</title>
		<link>http://www.schrankmonster.de/2007/01/05/finally-using-last-fm/</link>
		<comments>http://www.schrankmonster.de/2007/01/05/finally-using-last-fm/#comments</comments>
		<pubDate>Fri, 05 Jan 2007 16:07:55 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>
		<category><![CDATA[Radio]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2007/01/05/finallyUsingLastfm.aspx</guid>
		<description><![CDATA[Several months after I was told about last.fm I finally ended up using it. I installed it yesterday on my main-music-playing-machine and so far the experience is great. &#8220;Last.fm is a service that records what you listen to, and then presents you with an array of interesting things based upon your tastes — artists you [...]]]></description>
			<content:encoded><![CDATA[<p align="left">Several months after I was told about last.fm I finally ended up using it. I installed it yesterday on my main-music-playing-machine and so far the experience is great.</p>
<p align="left"><em>&#8220;Last.fm is a service that records what you listen to, and then presents you with an array of interesting things based upon your tastes — artists you might like, users with similar taste, personalised radio streams, charts, and much more.&#8221;</em></p>
<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/finallyusinglast.fm_F0C4/lastfm%5B4%5D.jpg" target="_new" atomicselection="true"><img height="325" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/finallyusinglast.fm_F0C4/lastfm_thumb%5B2%5D.jpg" width="400" border="0"></a> </p>
<p align="left">Since last.fm is monitoring what music I am listening to it can also be used to create some kind of &#8220;personal chart list&#8221; which you can put on your website&#8230; it may look like this:</p>
<p align="center"><a href="http://www.last.fm/user/bietiekay/?chartstyle=basicrt10"><img alt="bietiekay's Profile Page" src="http://imagegen.last.fm/basicrt10/recenttracks/bietiekay.gif" border="0"></a> <br />(this actually is a realtime chart of my account)</p>
<p align="left">In the meantime I was redirected to another quite similar service called &#8220;Pandora&#8221;. You also get a free high-quality radio from them. But Pandora is working very differently in the inside. Instead of taking the social approach like last.fm, Pandora wants to investigate the &#8220;genome of music&#8221;:</p>
<p align="left"><em>&#8220;Together we set out to capture the essence of music at the most fundamental level. We ended up assembling literally hundreds of musical attributes or &#8220;genes&#8221; into a very large Music Genome. Taken together these genes capture the unique and magical musical identity of a song &#8211; everything from melody, harmony and rhythm, to instrumentation, orchestration, arrangement, lyrics, and of course the rich world of singing and vocal harmony. It&#8217;s not about what a band looks like, or what genre they supposedly belong to, or about who buys their records &#8211; it&#8217;s about what each individual song sounds like.&#8221;</em></p>
<p align="left">Since last.fm has a really nice tool for my mac and is working really well for my music taste I am going to stick with it&#8230; for everyone else: go and try both.</p>
<p align="left">Source 1: <a title="http://www.last.fm/" href="http://www.last.fm/">http://www.last.fm/</a><br />Source 2: <a title="http://www.pandora.com/" href="http://www.pandora.com/">http://www.pandora.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2007/01/05/finally-using-last-fm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Halo Theme Song&#8230;</title>
		<link>http://www.schrankmonster.de/2006/12/20/halo-theme-song/</link>
		<comments>http://www.schrankmonster.de/2006/12/20/halo-theme-song/#comments</comments>
		<pubDate>Wed, 20 Dec 2006 14:52:37 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>
		<category><![CDATA[Xbox]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/12/20/HaloThemeSong.aspx</guid>
		<description><![CDATA[Awesome!]]></description>
			<content:encoded><![CDATA[</p>
<div align="center"><embed src="http://www.youtube.com/v/VLt5_ME_2_M" width="425" height="350" type="application/x-shockwave-flash" wmode="transparent"></div>
<div align="center">Awesome!</div>
<p></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/12/20/halo-theme-song/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Aus dem Archiv&#8230; Die &#196;rzte 1984-1989</title>
		<link>http://www.schrankmonster.de/2006/12/19/aus-dem-archiv-die-rzte-1984-1989/</link>
		<comments>http://www.schrankmonster.de/2006/12/19/aus-dem-archiv-die-rzte-1984-1989/#comments</comments>
		<pubDate>Tue, 19 Dec 2006 17:58:26 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/12/19/AusDemArchivDieAumlrzte19841989.aspx</guid>
		<description><![CDATA[Weihnachten, das ist die Zeit der sentimentalen Rückblicke und selbstkritischen Fragen (&#8220;Was zum Teufel hab ich eigentlich das Jahr über gemacht?&#8221;) und noch kritischeren Bernd-das-Brot-like-Jahresausblicke (&#8220;Macht euch keine Hoffnung: Das nächste Jahr wird noch viel schlimmer.&#8221; und &#8220;Die Hölle, das sind die Anderen.&#8221;). Und man kramt auch Sachen wieder raus. Da liegt bei mir nun [...]]]></description>
			<content:encoded><![CDATA[<p><P>Weihnachten, das ist die Zeit der sentimentalen Rückblicke und selbstkritischen Fragen (&#8220;Was zum Teufel hab ich eigentlich das Jahr über gemacht?&#8221;) und noch kritischeren Bernd-das-Brot-like-Jahresausblicke (&#8220;Macht euch keine Hoffnung: Das nächste Jahr wird noch viel schlimmer.&#8221; und &#8220;Die Hölle, das sind die Anderen.&#8221;).</P><br />
<P>Und man kramt auch Sachen wieder raus. Da liegt bei mir nun eine alte Ärzte-DVD auf dem Schreibtisch.</P><br />
<P>Der Datenträger deckt die ersten Schaffensjahre der Gruppe ab.</P><br />
<P>Neben hinglänglich bekannten Videos&#8230;</P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/gehenwieein%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/gehenwieein.jpg" width=240 border=0></A></P><br />
<P> </P><br />
<P align=center>&#8220;Gehn wie ein Ägypter&#8221;</P><br />
<P> </P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/westerland%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/westerland.jpg" width=240 border=0></A></P><br />
<P> </P><br />
<P align=center>&#8220;Westerland&#8221;</P><br />
<P align=center> </P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/bittebitte%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/bittebitte.jpg" width=240 border=0></A> </P><br />
<P align=center>&#8220;Bitte, Bitte&#8221;</P><br />
<P> </P><br />
<P>&#8230;auch diverse Live-Auftritte im TV&#8230;</P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/teenager%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/teenager.jpg" width=240 border=0></A> </P><br />
<P align=center>&#8220;Teenagerliebe&#8221;</P><br />
<P align=center> </P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/zuspaet%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/zuspaet.jpg" width=240 border=0></A> </P><br />
<P align=center>&#8220;Zu spät&#8221;</P><br />
<P align=center> </P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/duwillstmich%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/duwillstmich.jpg" width=240 border=0></A> </P><br />
<P align=center>&#8220;Du willst mich küssen&#8221;</P><br />
<P align=center> </P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/radiobrennt%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/radiobrennt.jpg" width=240 border=0></A> </P><br />
<P align=center>&#8220;Radio brennt&#8221;</P><br />
<P> </P><br />
<P>&#8230;sowie Interviewmaterial&#8230;</P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/fahrin%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/fahrin.jpg" width=240 border=0></A></P><br />
<P> </P><br />
<P align=center>Farin</P><br />
<P> </P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/bela%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/bela.jpg" width=240 border=0></A> </P><br />
<P align=center>Bela</P><br />
<P align=center> </P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/sahnie%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/sahnie.jpg" width=240 border=0></A> </P><br />
<P align=center>Sahnie</P><br />
<P align=center> </P><br />
<P>&#8230; und nicht zu vergessen die Moskito-Sachen:</P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/moskito%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/moskito.jpg" width=240 border=0></A> </P><br />
<P align=center> </P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/rockroll%5B1%5D.jpg" atomicselection="true"><IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=192 src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/AusdemArchiv.Dierzte19841989_10B27/rockroll.jpg" width=240 border=0></A> </P><br />
<P align=center>&#8220;Das ist Rock &#8216;n&#8217; Roll&#8221;</P><br />
<P> </P><br />
<P>Mein persönlicher Favorit ist &#8220;Du willst mich küssen&#8221;. Allein schon mit dem Gedanken, ein Nerd würde den Song laut und ungeniert im Schulflur trällern:</P><br />
<P>&#8220;Du willst mich küssen, doch das geht mir zu schnell. Du solltest wissen: Ich bin intellektuell.&#8221;</P></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/12/19/aus-dem-archiv-die-rzte-1984-1989/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mercedes Benz Mixed Tape 15 available</title>
		<link>http://www.schrankmonster.de/2006/12/07/mercedes-benz-mixed-tape-15-available/</link>
		<comments>http://www.schrankmonster.de/2006/12/07/mercedes-benz-mixed-tape-15-available/#comments</comments>
		<pubDate>Thu, 07 Dec 2006 05:37:00 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/12/07/MercedesBenzMixedTape15Available.aspx</guid>
		<description><![CDATA[&#8220;Ben Westbeech, Briony, Cris Tanzi, Divas Harmony feat. Kayla &#038; Trip, Golden Era of Sound feat. Dionne Charles, Granufunk &#038; Sonny Plankton, Kristin Hild, Lady Destiny, Layonne &#038; Krako, My Toys Like Me, Reebosound, S. Maily, Stee Downes, Super Star Planet, Switch&#8221;&#8230; oh wait&#8230; GRANUFUNK? Source: More]]></description>
			<content:encoded><![CDATA[<p align="center"><em><a href="http://www.mixed-tape.com/" target="_new" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="179" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/MercedesBenzMixedTape15available_5D09/mixed15.%5B5%5D.jpg" width="240" border="0"></a> </em></p>
<p><em>&#8220;Ben Westbeech, Briony, Cris Tanzi, Divas Harmony feat. Kayla &#038; Trip, Golden Era of Sound feat. Dionne Charles, <strong>Granufunk</strong> &#038; Sonny Plankton, Kristin Hild, Lady Destiny, Layonne &#038; Krako, My Toys Like Me, Reebosound, S. Maily, Stee Downes, Super Star Planet, Switch&#8221;&#8230;</em> oh wait&#8230; <a href="http://www.schrankmonster.de/SearchView.aspx?q=granufunk" target="_blank">GRANUFUNK</a>?</p>
<p>Source: <a title="More" href="http://www.mixed-tape.com/">More</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/12/07/mercedes-benz-mixed-tape-15-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gears of War Soundtrack for free&#8230;</title>
		<link>http://www.schrankmonster.de/2006/11/24/gears-of-war-soundtrack-for-free/</link>
		<comments>http://www.schrankmonster.de/2006/11/24/gears-of-war-soundtrack-for-free/#comments</comments>
		<pubDate>Fri, 24 Nov 2006 15:53:51 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/11/24/GearsOfWarSoundtrackForFree.aspx</guid>
		<description><![CDATA[Apparently the Gears of War Soundtrack by Megadeth is downloadable for free. Get the song and the lyrics here. Source: http://www.megadeth.com/]]></description>
			<content:encoded><![CDATA[<p align="center"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="46" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/GearsofWarSoundtrackforfree_EDAB/r2_1%5B3%5D.jpg" width="400" border="0"> </p>
<p>Apparently the Gears of War Soundtrack by Megadeth is downloadable for free. Get the <a href="http://www.megadeth.com/gow/gears_of_war.mp3">song</a> and the <a href="http://www.megadeth.com/news/gowlyrics.html">lyrics</a> here.</p>
<p>Source: <a title="http://www.megadeth.com/" href="http://www.megadeth.com/">http://www.megadeth.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/11/24/gears-of-war-soundtrack-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>low latency network audio&#8230;JACK</title>
		<link>http://www.schrankmonster.de/2006/10/03/low-latency-network-audio-jack/</link>
		<comments>http://www.schrankmonster.de/2006/10/03/low-latency-network-audio-jack/#comments</comments>
		<pubDate>Tue, 03 Oct 2006 12:29:31 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/10/03/lowLatencyNetworkAudioJACK.aspx</guid>
		<description><![CDATA[It&#8217;s been some days when I wrote about my wish and need for low latency network audio solutions. And now it seems that there is something to help the situation: JACK. &#8220;Have you ever wanted to take the audio output of one piece of software and send it to another? How about taking the output [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/lowlatencynetworkaudio.JACK_CC0C/jack%5B2%5D.jpg" atomicselection="true"><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="120" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/lowlatencynetworkaudio.JACK_CC0C/jack_thumb.jpg" width="400" border="0"></a> </p>
<p>It&#8217;s been some days when I <a href="http://www.schrankmonster.de/PermaLink,guid,23cebd7b-22be-47b3-bf81-c01324f639c8.aspx">wrote about my wish and need for low latency network audio solutions</a>. And now it seems that there is something to help the situation: JACK.</p>
<p><em>&#8220;Have you ever wanted to take the audio output of one piece of software and send it to another? How about taking the output of that same program and send it to two others, then record the result in the first program? If so, JACK may be what you&#8217;ve been looking for.</em></p>
<p><em>JACK is a low-latency audio server, written for POSIX conformant operating systems such as GNU/Linux and Apple&#8217;s OS X. It can connect a number of different applications to an audio device, as well as allowing them to share audio between themselves. Its clients can run in their own processes (ie. as normal applications), or can they can run within the JACK server (ie. as a &#8220;plugin&#8221;).&#8221;</em>
<p>This alone isn&#8217;t what I was searching for&#8230;but there is NetJack &#8211; the network extension for JACK.
<p>&#8220;<a href="http://netjack.sourceforge.net/">Netjack</a> is a Realtime Audio Transport over a generic IP Network. It is fully integrated into JACK.&#8221;
<p>Source 1: <a title="another nerd wish- low latency network audio" href="http://www.schrankmonster.de/PermaLink,guid,23cebd7b-22be-47b3-bf81-c01324f639c8.aspx">another nerd wish- low latency network audio</a><br />Source 2: <a href="http://jackaudio.org">http://jackaudio.org</a> <br />Source 3: <a href="http://jackosx.com">http://jackosx.com</a><br />Source 4: <a href="http://netjack.sf.net">http://netjack.sf.net</a><br />Source 5: <a href="http://www.grame.fr/~letz/jackdmp.html">http://www.grame.fr/~letz/jackdmp.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/10/03/low-latency-network-audio-jack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mercedes Benz Mixed Tape 14 is available for download&#8230;</title>
		<link>http://www.schrankmonster.de/2006/09/26/mercedes-benz-mixed-tape-14-is-available-for-download/</link>
		<comments>http://www.schrankmonster.de/2006/09/26/mercedes-benz-mixed-tape-14-is-available-for-download/#comments</comments>
		<pubDate>Tue, 26 Sep 2006 16:38:11 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/09/26/MercedesBenzMixedTape14IsAvailableForDownload.aspx</guid>
		<description><![CDATA[As always: great music, free download. Source: http://www.mercedes-benz.com/mixedtape]]></description>
			<content:encoded><![CDATA[</p>
<p>
<div align="center"><a href="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/MercedesBenzMixedTape14isavailablefordo_10654/mt14%5B2%5D.jpg" atomicselection="true"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="178" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/MercedesBenzMixedTape14isavailablefordo_10654/mt14_thumb.jpg" width="400" border="0"></a></div>
</p>
<p>As always: great music, free download.</p>
<p>Source: <a href="http://www.mercedes-benz.com/mixedtape">http://www.mercedes-benz.com/mixedtape</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/09/26/mercedes-benz-mixed-tape-14-is-available-for-download/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pimp my Rights music sampler volume 1</title>
		<link>http://www.schrankmonster.de/2006/09/24/pimp-my-rights-music-sampler-volume-1/</link>
		<comments>http://www.schrankmonster.de/2006/09/24/pimp-my-rights-music-sampler-volume-1/#comments</comments>
		<pubDate>Sun, 24 Sep 2006 14:15:29 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/09/24/PimpMyRightsMusicSamplerVolume1.aspx</guid>
		<description><![CDATA[There&#8217;s a new music sampler called &#8220;Pimp my Rights Volume 1&#8243; available for free download. You can get more information and the music after the jump. Source: http://www.ccc-r.de/boycott/#Music]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a new music sampler called &#8220;Pimp my Rights Volume 1&#8243; available for free download. You can get more information and the music after the jump.</p>
<p>
<div align="center"><a href="http://www.ccc-r.de/boycott/#Music" target="_new" atomicselection="true"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="406" src="http://www.schrankmonster.de/content/binary/WindowsLiveWriter/PimpmyRightsmusicsamplervolume1_E4E3/Front%5B3%5D.jpg" width="400" border="0"></a></div>
</p>
<p> Source: <a href="http://www.ccc-r.de/boycott/#Music">http://www.ccc-r.de/boycott/#Music</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/09/24/pimp-my-rights-music-sampler-volume-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mixed Tape 13 released&#8230;</title>
		<link>http://www.schrankmonster.de/2006/07/20/mixed-tape-13-released/</link>
		<comments>http://www.schrankmonster.de/2006/07/20/mixed-tape-13-released/#comments</comments>
		<pubDate>Thu, 20 Jul 2006 12:23:53 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/07/20/MixedTape13Released.aspx</guid>
		<description><![CDATA[Go and get it&#8230; Source: http://www.mixed-tape.com/]]></description>
			<content:encoded><![CDATA[<p>
Go and get it&#8230; <img src='http://www.schrankmonster.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>
<center><a href="http://www.mixed-tape.com/"><img border="0" src="http://www.schrankmonster.de/content/binary/mixed13.jpg"></a></center></p>
<p>
Source: <a href="http://www.mixed-tape.com/">http://www.mixed-tape.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/07/20/mixed-tape-13-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bobby Baby in germany!</title>
		<link>http://www.schrankmonster.de/2006/07/17/bobby-baby-in-germany/</link>
		<comments>http://www.schrankmonster.de/2006/07/17/bobby-baby-in-germany/#comments</comments>
		<pubDate>Mon, 17 Jul 2006 01:09:47 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/07/17/BobbyBabyInGermany.aspx</guid>
		<description><![CDATA[Last year I told you about Bobby Baby &#8211; a girl from sweden which makes great music since she is 12. Known since 2005 as Bobby Baby (before: Ella Glockenspiel) she is going to be in germany for some gigs next month: Watch her current video: video by http://www.lejonlinn.com/, music by Bobby Baby Source 1: [...]]]></description>
			<content:encoded><![CDATA[<p><P><A href="http://www.schrankmonster.de/PermaLink,guid,6820813b-f9fd-4905-8603-5de6b686a550.aspx">Last year</A> I told you about Bobby Baby &#8211; a girl from sweden which makes great music since she is 12. Known since 2005 as Bobby Baby (before: Ella Glockenspiel) she is going to be in germany for some gigs next month:<br />
<P><br />
<CENTER><A href="http://www.antistars.de"><IMG src="http://www.schrankmonster.de/content/binary/tysk2.jpg" border=0></A></CENTER><br />
<P>Watch her current video:<br />
<P><br />
<CENTER><br />
<object type="application/x-shockwave-flash" data="/content/flashplayer/flvplayer.swf?file=/content/binary/someplacewin.flv&#038;autostart=false" wmode="transparent" height="240" width="320"><param name="movie" value="/content/flashplayer/flvplayer.swf?file=/content/binary/someplacewin.flv&#038;autostart=false"><param name="wmode" value="transparent"></object></p>
<p><BR>video by <A href="http://www.lejonlinn.com/">http://www.lejonlinn.com/</A>, music by Bobby Baby</CENTER><br />
<P>Source 1: <A href="http://www.bobbybaby.net">http://www.bobbybaby.net</A><BR>Source 2: <A href="http://www.antistar.de">http://www.antistar.de</A></P></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/07/17/bobby-baby-in-germany/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>God is a DJ</title>
		<link>http://www.schrankmonster.de/2006/06/12/god-is-a-dj/</link>
		<comments>http://www.schrankmonster.de/2006/06/12/god-is-a-dj/#comments</comments>
		<pubDate>Mon, 12 Jun 2006 10:23:36 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[FeM]]></category>
		<category><![CDATA[hack-the-planet]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/06/12/GodIsADJ.aspx</guid>
		<description><![CDATA[Especially for our reply2all team&#8230;: Source: http://vowe.net/archives/007362.html]]></description>
			<content:encoded><![CDATA[<p>
Especially for our reply2all team&#8230;:
</p>
</p>
<p><center><object height="350" width="425"><param name="movie" value="http://www.youtube.com/v/QZrKgqc1Rnw"><embed src="http://www.youtube.com/v/QZrKgqc1Rnw" type="application/x-shockwave-flash" height="350" width="425"></object></center></p>
<p>
Source: <a href="http://vowe.net/archives/007362.html">http://vowe.net/archives/007362.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/06/12/god-is-a-dj/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adrienne Pierces great music..</title>
		<link>http://www.schrankmonster.de/2006/06/10/adrienne-pierces-great-music/</link>
		<comments>http://www.schrankmonster.de/2006/06/10/adrienne-pierces-great-music/#comments</comments>
		<pubDate>Sat, 10 Jun 2006 07:23:22 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/06/10/AdriennePiercesGreatMusic.aspx</guid>
		<description><![CDATA[I am listening to Adrienne Pierces music since about two weeks. I really like those singer-songwriter style and therefore I like Adrienne Pierces music. My favorite song is &#8220;Lost&#038;Found&#8221; which was featured on the &#8220;Veronica Mars&#8221; soundtrack. &#8220;The buzz on Adrienne Pierce continues to build. The Vancouver born singer/songwriter taps into a singular source to [...]]]></description>
			<content:encoded><![CDATA[<p>
I am listening to Adrienne Pierces music since about two weeks. I really like those singer-songwriter style and therefore I like Adrienne Pierces music. My favorite song is &#8220;Lost&#038;Found&#8221; which was featured on the &#8220;<a href="http://www.imdb.com/title/tt0412253/">Veronica Mars</a>&#8221; soundtrack.
</p>
<p>
<i>&#8220;The buzz on Adrienne Pierce continues to build. The Vancouver born singer/songwriter taps into a singular source to create music that has universal appeal. Her independently-produced debut, &#8220;Small Fires,&#8221; is a pop gem full of sublime songcraft and intense performances.&#8221; <b>- John Goodman, North Shore News </b><br />
</i>
</p>
</p>
<p><center><a href="http://www.adriennepierce.com/"><img src="http://www.schrankmonster.de/content/binary/adriennebio2.jpg" border="0"></a><br />
</center></p>
<p>
Visit her website, and buy her music!
</p>
</p>
<p><center><a href="http://www.adriennepierce.com/"><img src="http://www.schrankmonster.de/content/binary/adriennewebsite.jpg" border="0"></a></center></p>
<p>
Source: <a href="http://www.adriennepierce.com/">http://www.adriennepierce.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/06/10/adrienne-pierces-great-music/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CM lounge club in Bamberg&#8230;</title>
		<link>http://www.schrankmonster.de/2006/05/21/cm-lounge-club-in-bamberg/</link>
		<comments>http://www.schrankmonster.de/2006/05/21/cm-lounge-club-in-bamberg/#comments</comments>
		<pubDate>Sun, 21 May 2006 00:15:31 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[private]]></category>
		<category><![CDATA[Reallife]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/05/21/CMLoungeClubInBamberg.aspx</guid>
		<description><![CDATA[Hmm&#8230; great club. bad music. nuff said. Source: http://www.cm-club.de/]]></description>
			<content:encoded><![CDATA[<p><P></P><br />
<P align=left>Hmm&#8230; great club. bad music. nuff said.</P><br />
<P align=center><A href="http://www.schrankmonster.de/content/binary/cm_bamberg.jpg"><IMG src="http://www.schrankmonster.de/content/binary/cm_bamberg_thumb.jpg" border=0></A></P><br />
<P align=left>Source: <A href="http://www.cm-club.de/">http://www.cm-club.de/</A></P></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/05/21/cm-lounge-club-in-bamberg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>free MPEG-4/3GPP encoder/decoder</title>
		<link>http://www.schrankmonster.de/2006/05/18/free-mpeg-43gpp-encoderdecoder/</link>
		<comments>http://www.schrankmonster.de/2006/05/18/free-mpeg-43gpp-encoderdecoder/#comments</comments>
		<pubDate>Thu, 18 May 2006 10:23:28 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/05/18/freeMPEG43GPPEncoderdecoder.aspx</guid>
		<description><![CDATA[Nero just released a free MPEG-4/3GPP encoder/decoder software package for Windows. Compression Ratios ranging from ultra high (58 CDs fit on one!) to High-End Audio (2.5:1), for absolutely perfect audiophile encodings Crystal Clear, Award Winning Sound Quality at every compression ratio and bit rate! Support for Embedded Album Art (Covers, Booklets, Lyrics!) Store Entire Audio [...]]]></description>
			<content:encoded><![CDATA[<p>
Nero just released a free MPEG-4/3GPP encoder/decoder software package for Windows. </p>
<p>
<center><a href="http://ww2.nero.com/nerodigital/enu/Nero_Digital_Audio.html"><img border="0" src="http://www.schrankmonster.de/content/binary/ND_Audio.jpg"></a></center></p>
<ul>
<li>Compression Ratios ranging from ultra high (58 CDs fit on one!) to High-End Audio (2.5:1), for absolutely perfect audiophile encodings </li>
<li>Crystal Clear, Award Winning Sound Quality at every compression ratio and bit rate!</li>
<li>Support for Embedded Album Art (Covers, Booklets, Lyrics!) </li>
<li>Store Entire Audio Album in a Single .mp4 File with all the Features of an Audio CD embedded inside, but at a fraction of the space!</li>
<li>Reference Quality MPEG-4 Audio Codec</li>
<li>Fully Compatible with the Latest Version of the State-of-the-art MPEG-4 Audio Standard (LC-AAC, HE-AAC and HE-AAC v2)</li>
</ul>
<p>
Source: <a href="http://ww2.nero.com/nerodigital/enu/Nero_Digital_Audio.html">Nero Digital Audio</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/05/18/free-mpeg-43gpp-encoderdecoder/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>take the new Windows Media Player 11 to a test drive&#8230;</title>
		<link>http://www.schrankmonster.de/2006/05/17/take-the-new-windows-media-player-11-to-a-test-drive/</link>
		<comments>http://www.schrankmonster.de/2006/05/17/take-the-new-windows-media-player-11-to-a-test-drive/#comments</comments>
		<pubDate>Wed, 17 May 2006 09:16:45 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/05/17/takeTheNewWindowsMediaPlayer11ToATestDrive.aspx</guid>
		<description><![CDATA[It&#8217;s the first version to come with URGE. But the most visible fact is that it comes in sleek black. Which is obviously tr]]></description>
			<content:encoded><![CDATA[<p>
It&#8217;s the first version to come with URGE. But the most visible fact is that it comes in sleek black. Which is obviously tr</p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/05/17/take-the-new-windows-media-player-11-to-a-test-drive/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>some pictures from the Newcomer Festival &#8220;Vorsicht Band! 2006&#8243;</title>
		<link>http://www.schrankmonster.de/2006/05/12/some-pictures-from-the-newcomer-festival-vorsicht-band-2006/</link>
		<comments>http://www.schrankmonster.de/2006/05/12/some-pictures-from-the-newcomer-festival-vorsicht-band-2006/#comments</comments>
		<pubDate>Fri, 12 May 2006 21:48:13 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[FeM]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Meetings]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>
		<category><![CDATA[Radio]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/05/12/somePicturesFromTheNewcomerFestivalVorsichtBand2006.aspx</guid>
		<description><![CDATA[To give you an brief impression of the equipment that is necessary to stream and broadcast such a festival, here are some pictures: Pictures made by der Andi. Source: streaming.fem.tu-ilmenau.de]]></description>
			<content:encoded><![CDATA[<p>
To give you an brief impression of the equipment that is necessary to stream and broadcast such a festival, here are some pictures:</p>
<p><center><a href="http://www.schrankmonster.de/content/binary/IMG_6071.jpg"><img border="0" src="http://www.schrankmonster.de/content/binary/IMG_6071_thumb.jpg"></a></center>
<p><center><a href="http://www.schrankmonster.de/content/binary/IMG_6066.jpg"><img border="0" src="http://www.schrankmonster.de/content/binary/IMG_6066_thumb.jpg"></a></center>
<p><center><a href="http://www.schrankmonster.de/content/binary/IMG_6059.jpg"><img border="0" src="http://www.schrankmonster.de/content/binary/IMG_6059_thumb.jpg"></a></center>
<p><center><a href="http://www.schrankmonster.de/content/binary/IMG_6050.jpg"><img border="0" src="http://www.schrankmonster.de/content/binary/IMG_6050_thumb.jpg"></a></center>
<p><center><a href="http://www.schrankmonster.de/content/binary/IMG_6049.jpg"><img border="0" src="http://www.schrankmonster.de/content/binary/IMG_6049_thumb.jpg"></a></center>
<p><center><a href="http://www.schrankmonster.de/content/binary/IMG_6047.jpg"><img border="0" src="http://www.schrankmonster.de/content/binary/IMG_6047_thumb.jpg"></a></center>
<p><center><a href="http://www.schrankmonster.de/content/binary/IMG_6045.jpg"><img border="0" src="http://www.schrankmonster.de/content/binary/IMG_6045_thumb.jpg"></a></center>
<p><center><a href="http://www.schrankmonster.de/content/binary/IMG_6044.jpg"><img border="0" src="http://www.schrankmonster.de/content/binary/IMG_6044_thumb.jpg"></a></center>
<p><center><a href="http://www.schrankmonster.de/content/binary/IMG_6030.jpg"><img border="0" src="http://www.schrankmonster.de/content/binary/IMG_6030_thumb.jpg"></a></center>
<p>
Pictures made by der Andi.</p>
<p>
Source: <a href="http://streaming.fem.tu-ilmenau.de">streaming.fem.tu-ilmenau.de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/05/12/some-pictures-from-the-newcomer-festival-vorsicht-band-2006/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5. Ilmenauer Newcomer Festival &#8220;Vorsicht Band! 2006&#8243;</title>
		<link>http://www.schrankmonster.de/2006/05/12/5-ilmenauer-newcomer-festival-vorsicht-band-2006/</link>
		<comments>http://www.schrankmonster.de/2006/05/12/5-ilmenauer-newcomer-festival-vorsicht-band-2006/#comments</comments>
		<pubDate>Fri, 12 May 2006 18:41:51 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[FeM]]></category>
		<category><![CDATA[Meetings]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>
		<category><![CDATA[Radio]]></category>
		<category><![CDATA[TV]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/05/12/5IlmenauerNewcomerFestivalVorsichtBand2006.aspx</guid>
		<description><![CDATA[Today it&#8217;s once again time for the Ilmenau Newcomer Festival &#8220;Vorsicht Band! 2006&#8243;. And this time again there&#8217;s FeM involved. But first the facts: 16 Newcomer bands from all across germany are going to perform in the next two days. Since the 16 where chosen from 272 you can bet that there&#8217;s only the best [...]]]></description>
			<content:encoded><![CDATA[<p><center><a href="http://www.ilmenau-festival.de/"><img border="0" src="http://www.schrankmonster.de/content/binary/newcomer06.jpg"></a></center>
<p>
Today it&#8217;s once again time for the Ilmenau Newcomer Festival &#8220;Vorsicht Band! 2006&#8243;. And this time again there&#8217;s FeM involved. But first the facts:</p>
<p>
16 Newcomer bands from all across germany are going to perform in the next two days. Since the 16 where chosen from 272 you can bet that there&#8217;s only the best the newcomer scene has to offer these days.</p>
<p>
And now to the juicy facts from FeM: You can watch the whole Newcomer Festival &#8220;Vorsicht Band! 2006&#8243; over the internet for free. Just connect to one of the following Windows Media livestreams:</p>
<p>
Broadband Internet (1 Mbit and above): <a href="mms://streaming.fem.tu-ilmenau.de/vorsichtband2006">mms://streaming.fem.tu-ilmenau.de/vorsichtband2006</a><br />
Narrowband Internet (below DSL): <a href="mms://streaming.fem.tu-ilmenau.de/vorsichtband2006_modem">mms://streaming.fem.tu-ilmenau.de/vorsichtband2006_modem</a>
<p>
To be precise:
<p><center><b>THE LIFESTREAMS ARE AVAILABLE NOW!!!</b></center>
<p>
And some facts for the nerds: 3 stages, 9 cameras, 30 people, 10.000m cableing,&#8230;</p>
<p>
Source 1: <a href="http://streaming.fem.tu-ilmenau.de">http://streaming.fem.tu-ilmenau.de</a><br />
<br />
Source 2: <a href="http://www.ilmenau-festival.de">http://www.ilmenau-festival.de</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/05/12/5-ilmenauer-newcomer-festival-vorsicht-band-2006/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mercedes Benz Music Compilation &#8211; mixted tape 12</title>
		<link>http://www.schrankmonster.de/2006/05/11/mercedes-benz-music-compilation-mixted-tape-12/</link>
		<comments>http://www.schrankmonster.de/2006/05/11/mercedes-benz-music-compilation-mixted-tape-12/#comments</comments>
		<pubDate>Thu, 11 May 2006 13:24:23 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[music-of-the-day]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/05/11/MercedesBenzMusicCompilationMixtedTape12.aspx</guid>
		<description><![CDATA[It&#8217;s time for a new iteration of the mixed-tape. So get your downloads running now: Source: http://www.mixed-tape.com/]]></description>
			<content:encoded><![CDATA[<p>
It&#8217;s time for a new iteration of the mixed-tape. So get your downloads running now:<br />
<center><a href="http://www.mixed-tape.com"><img border="0" src="http://www.schrankmonster.de/content/binary/mixedtape12.jpg"></a></center></p>
<p><p>
Source: <a href="http://www.mixed-tape.com/">http://www.mixed-tape.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/05/11/mercedes-benz-music-compilation-mixted-tape-12/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows Security&#8230;a great (german) podcast episode&#8230;</title>
		<link>http://www.schrankmonster.de/2006/04/23/windows-security-a-great-german-podcast-episode/</link>
		<comments>http://www.schrankmonster.de/2006/04/23/windows-security-a-great-german-podcast-episode/#comments</comments>
		<pubDate>Sun, 23 Apr 2006 12:44:44 +0000</pubDate>
		<dc:creator>bietiekay</dc:creator>
				<category><![CDATA[Blog-o-Sphere]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Riot]]></category>

		<guid isPermaLink="false">http://www.schrankmonster.de/2006/04/23/WindowsSecurityaGreatGermanPodcastEpisode.aspx</guid>
		<description><![CDATA[If you are interested in software / security / windows, I recommend listening to this episode of Chaosradio. It&#8217;s a german language podcast, sorry for the others&#8230; &#8220;Microsoft Windows hat in der Öffentlichkeit was Sicherheit betrifft einen schlechten Stand. Windows gilt als System mit offenen Scheunentoren und wird von der Elite gemieden. Doch in den [...]]]></description>
			<content:encoded><![CDATA[<p>
If you are interested in software / security / windows, I recommend listening to this episode of Chaosradio. It&#8217;s a german language podcast, sorry for the others&#8230;</p>
<p>
<center><a href="http://www.chaosradio.de/cre022.html"><img border="0" src="http://www.schrankmonster.de/content/binary/cre_windows_security.jpg"></a></center></p>
<p>
<i>&#8220;Microsoft Windows hat in der Öffentlichkeit was Sicherheit betrifft einen schlechten Stand. Windows gilt als System mit offenen Scheunentoren und wird von der Elite gemieden. Doch in den letzten Jahren hat sich eine Menge getan und die letzten Releases von Windows XP wie auch das bevorstehende Windows Vista kommen mit signifikanten und grundlegenden Änderungen daher, die das Bild bald ändern könnten.</p>
<p>
Im Gespräch bietet FX Einblicke in die Vorgehensweise von Microsoft in den letzten Jahren und erklärt, welche konkreten Ergebnisse Microsoft in seinen aktuellen und kommenden Betriebssystem-Releases erreicht hat und anstrebt. Am Ende gibt es auch einen Blick auf die Ist-Situation bei Linux.&#8221;</i></p>
<p>
Source: <a href="http://www.chaosradio.de/cre022.html">http://www.chaosradio.de/cre022.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.schrankmonster.de/2006/04/23/windows-security-a-great-german-podcast-episode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

