<?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>computermusicblog.com &#187; algorithmic</title>
	<atom:link href="http://computermusicblog.com/blog/index.php/tag/algorithmic/feed/" rel="self" type="application/rss+xml" />
	<link>http://computermusicblog.com/blog</link>
	<description>electronic and computer music as it happens</description>
	<lastBuildDate>Tue, 31 Jan 2012 07:37:02 +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>Phil Burk&#8217;s Look Back Melody Algorithm</title>
		<link>http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/</link>
		<comments>http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/#comments</comments>
		<pubDate>Thu, 03 Nov 2011 22:56:21 +0000</pubDate>
		<dc:creator>evan</dc:creator>
				<category><![CDATA[Algorithmic]]></category>
		<category><![CDATA[Math]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[algorithm]]></category>
		<category><![CDATA[algorithmic]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[generative]]></category>
		<category><![CDATA[JSyn]]></category>
		<category><![CDATA[midi]]></category>
		<category><![CDATA[Phil Burk]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://computermusicblog.com/blog/2011/11/03/</guid>
		<description><![CDATA[<p>
First of all, I probably shouldn&#8217;t attribute this algorithm to <a href="http://www.softsynth.com/" target="_blank">Phil Burk</a>. I imagine that many people have implemented a version of this algorithm. It&#8217;s a simple, almost fundamental musical algorithm, but he is the first person who brought it to my attention, so for the time being, I will call it <i>Phil [...]]]></description>
			<content:encoded><![CDATA[<p>
First of all, I probably shouldn&#8217;t attribute this algorithm to <a href="http://www.softsynth.com/" target="_blank">Phil Burk</a>. I imagine that many people have implemented a version of this algorithm. It&#8217;s a simple, almost fundamental musical algorithm, but he is the first person who brought it to my attention, so for the time being, I will call it <i>Phil Burk&#8217;s Look Back Algorithm</i>.
</p>
<p>
In pseudocode, the algorithm looks like this:
</p>
<p><code><br />
1. Generate a handful of random note events (pitch, duration, velocity)<br />
2. For each successive note in the piece, notes[i] = notes[i - delay] + transposition<br />
3. Occasionally insert a random note event<br />
Where notes is an array of note events, notes[i] represents the current event, delay represents how far to look back, and transposition is a transformation of the previous notes.<br />
</code></p>
<p>
Phil brought up this algorithm in reference to a hyper-simplistic fugue generator. Essentially all it does is repeat sections of music that have already been generated. It pulls subsets of earlier note events and subtly transforms them. It infinitely noodles around on whatever random note events are generated in the first place.
</p>
<p>
The algorithm is remarkably effective for its simplicity. It is an elegant way of generating really coherent melodies. Here is a simple melody I generated using this algorithm: <a href='http://computermusicblog.com/blog/wp-content/uploads/2011/11/LookBackOutput.mid' target="_blank">LookBackOutput.mid</a>
</p>
<p>
And here is <a href='http://computermusicblog.com/blog/wp-content/uploads/2011/11/Look_Back_01.zip' target="_blank">a simple Eclipse project that implements the Look Back algorithm in java and outputs midi files.</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1114" title="Post to Twitter"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1114" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/&amp;headline=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm" title="Post to Yahoo Buzz"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/&amp;headline=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/&amp;title=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm" title="Post to Digg"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/&amp;title=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm" title="Post to Digg"> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/&amp;t=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm" title="Post to Facebook"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/&amp;t=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm" title="Post to Facebook"> </a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/&amp;t=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm" title="Post to MySpace"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/&amp;t=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm" title="Post to MySpace"> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/&amp;title=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm" title="Post to StumbleUpon"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/&amp;title=Phil+Burk%E2%80%99s+Look+Back+Melody+Algorithm" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://computermusicblog.com/blog/2011/11/03/phil-burks-look-back-melody-algorithm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://computermusicblog.com/blog/wp-content/uploads/2011/11/LookBackOutput.mid" length="1114" type="audio/midi" />
		</item>
		<item>
		<title>One Line Algorithmic Music by Ville-Matias Heikkilä</title>
		<link>http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/</link>
		<comments>http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 05:18:43 +0000</pubDate>
		<dc:creator>evan</dc:creator>
				<category><![CDATA[Algorithmic]]></category>
		<category><![CDATA[Chiptunes]]></category>
		<category><![CDATA[algorithmic]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[generative]]></category>

		<guid isPermaLink="false">http://computermusicblog.com/blog/2011/10/11/</guid>
		<description><![CDATA[<p>



</p>
<p>
This reminds me of the algorithmic poetry by <a href="http://nickm.com/" target="_blank">Nick Montfort</a>. He has a series of <a href="http://nickm.com/poems/ppg256.html">programs that generate poetry from a 256 characters of code</a>.</p>
<p>
<a href="http://createdigitalmusic.com/2011/10/one-line-of-code-into-music-now-with-visuals/" target="_blank">Via CDM</a></p>
<p> <a class="tt" href="http://twitter.com/intent/tweet?text=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1066" title="Post to Twitter"></a> <a class="tt" href="http://twitter.com/intent/tweet?text=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1066" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&#38;headline=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post to Yahoo Buzz"></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&#38;headline=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post [...]]]></description>
			<content:encoded><![CDATA[<p>
<center><br />
<iframe width="500" height="369" src="http://www.youtube.com/embed/tCRPUv8V22o" frameborder="0" allowfullscreen></iframe><br />
</center>
</p>
<p>
This reminds me of the algorithmic poetry by <a href="http://nickm.com/" target="_blank">Nick Montfort</a>. He has a series of <a href="http://nickm.com/poems/ppg256.html">programs that generate poetry from a 256 characters of code</a>.</p>
<p>
<a href="http://createdigitalmusic.com/2011/10/one-line-of-code-into-music-now-with-visuals/" target="_blank">Via CDM</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1066" title="Post to Twitter"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1066" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&amp;headline=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post to Yahoo Buzz"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&amp;headline=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&amp;title=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post to Digg"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&amp;title=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post to Digg"> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&amp;t=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post to Facebook"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&amp;t=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post to Facebook"> </a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&amp;t=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post to MySpace"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&amp;t=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post to MySpace"> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&amp;title=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post to StumbleUpon"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/&amp;title=One+Line+Algorithmic+Music+by+Ville-Matias+Heikkil%C3%A4" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://computermusicblog.com/blog/2011/10/11/one-line-algorithmic-music-by-ville-matias-heikkila/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Texturologie 9: Phacelia by James Caldwell</title>
		<link>http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/</link>
		<comments>http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 23:29:11 +0000</pubDate>
		<dc:creator>evan</dc:creator>
				<category><![CDATA[Algorithmic]]></category>
		<category><![CDATA[Live Electronic Music]]></category>
		<category><![CDATA[New Music]]></category>
		<category><![CDATA[algorithmic]]></category>
		<category><![CDATA[generative]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[wii]]></category>
		<category><![CDATA[wiimote]]></category>

		<guid isPermaLink="false">http://computermusicblog.com/blog/2011/07/15/</guid>
		<description><![CDATA[
<p>
A performance (by the composer) of Texturologie 9: Phacelia (2010) for computer music controlled by Wii Remote. The music is generated by a program made with Max/MSP. Take a look at Texturolgie 8b: Hyperbell (2009) and the explanation of the two Texturologie pieces for Wii Remote. Recorded at Western Illinois University. <a href="http://www.youtube.com/watch?v=fx_NdsKlBZU" target="_blank">[1]</a>
</p>

<p>


</p>
<p> <a [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>
A performance (by the composer) of Texturologie 9: Phacelia (2010) for computer music controlled by Wii Remote. The music is generated by a program made with Max/MSP. Take a look at Texturolgie 8b: Hyperbell (2009) and the explanation of the two Texturologie pieces for Wii Remote. Recorded at Western Illinois University. <a href="http://www.youtube.com/watch?v=fx_NdsKlBZU" target="_blank">[1]</a>
</p>
</blockquote>
<p>
<center><br />
<iframe width="500" height="405" src="http://www.youtube.com/embed/fx_NdsKlBZU" frameborder="0" allowfullscreen></iframe><br />
</center></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Texturologie+9%3A+Phacelia+by+James+Caldwell+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D932" title="Post to Twitter"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Texturologie+9%3A+Phacelia+by+James+Caldwell+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D932" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/&amp;headline=Texturologie+9%3A+Phacelia+by+James+Caldwell" title="Post to Yahoo Buzz"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/&amp;headline=Texturologie+9%3A+Phacelia+by+James+Caldwell" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/&amp;title=Texturologie+9%3A+Phacelia+by+James+Caldwell" title="Post to Digg"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/&amp;title=Texturologie+9%3A+Phacelia+by+James+Caldwell" title="Post to Digg"> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/&amp;t=Texturologie+9%3A+Phacelia+by+James+Caldwell" title="Post to Facebook"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/&amp;t=Texturologie+9%3A+Phacelia+by+James+Caldwell" title="Post to Facebook"> </a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/&amp;t=Texturologie+9%3A+Phacelia+by+James+Caldwell" title="Post to MySpace"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/&amp;t=Texturologie+9%3A+Phacelia+by+James+Caldwell" title="Post to MySpace"> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/&amp;title=Texturologie+9%3A+Phacelia+by+James+Caldwell" title="Post to StumbleUpon"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/&amp;title=Texturologie+9%3A+Phacelia+by+James+Caldwell" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://computermusicblog.com/blog/2011/07/15/texturologie-9-phacelia-by-james-caldwell/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Sound Activated Augmented Reality Sculptures for iPhone</title>
		<link>http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/</link>
		<comments>http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/#comments</comments>
		<pubDate>Wed, 13 Apr 2011 17:23:09 +0000</pubDate>
		<dc:creator>evan</dc:creator>
				<category><![CDATA[Algorithmic]]></category>
		<category><![CDATA[Interface]]></category>
		<category><![CDATA[algorithmic]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[augmented reality]]></category>
		<category><![CDATA[dsp]]></category>
		<category><![CDATA[generative]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://computermusicblog.com/blog/2011/04/13/</guid>
		<description><![CDATA[
<p>
Konstruct is an investigation into Generative Art in an Augmented Reality environment. It is a sound reactive AR experience for the iPhone that allows the user to create a virtual sculpture by speaking, whistling or blowing into the device&#8217;s microphone. A variety of 3D shapes, colour palettes and settings can be combined to build an [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>
Konstruct is an investigation into Generative Art in an Augmented Reality environment. It is a sound reactive AR experience for the iPhone that allows the user to create a virtual sculpture by speaking, whistling or blowing into the device&#8217;s microphone. A variety of 3D shapes, colour palettes and settings can be combined to build an endless collection of structures. Compositions can be saved to the device&#8217;s image gallery.
</p>
<p>
Konstruct is a free app available on iPhone 3GS and 4 running iOS 4+. A version for the iPad 2 is planned for the coming months.
</p>
<p>
Konstruct site &#8211; <A href="apps.augmatic.co.uk/​konstruct" target="_blank">apps.augmatic.co.uk/​konstruct</a><br/><br />
More info &#8211; <a href="jamesalliban.wordpress.com/​2011/​03/​30/​konstruct-ar-iphone-app/​" target="_blank">jamesalliban.wordpress.com/​2011/​03/​30/​konstruct-ar-iphone-app/​</a> <a href="http://vimeo.com/21537332" target="_blank">[1]</a><br/>
</p>
</blockquote>
<p>
<center><br />
<iframe src="http://player.vimeo.com/video/21537332" width="500" height="281" frameborder="0"></iframe><br />
</center>
</p>
<p>
<a href="http://blog.makezine.com/" target="_blank">Via Make</a></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D834" title="Post to Twitter"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D834" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/&amp;headline=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone" title="Post to Yahoo Buzz"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/&amp;headline=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/&amp;title=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone" title="Post to Digg"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/&amp;title=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone" title="Post to Digg"> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/&amp;t=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone" title="Post to Facebook"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/&amp;t=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone" title="Post to Facebook"> </a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/&amp;t=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone" title="Post to MySpace"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/&amp;t=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone" title="Post to MySpace"> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/&amp;title=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone" title="Post to StumbleUpon"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/&amp;title=Sound+Activated+Augmented+Reality+Sculptures+for+iPhone" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://computermusicblog.com/blog/2011/04/13/sound-activated-augmented-reality-sculptures-for-iphone/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Signature by Isa Wilson</title>
		<link>http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/</link>
		<comments>http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/#comments</comments>
		<pubDate>Mon, 25 Oct 2010 05:52:43 +0000</pubDate>
		<dc:creator>evan</dc:creator>
				<category><![CDATA[Algorithmic]]></category>
		<category><![CDATA[Live Electronic Music]]></category>
		<category><![CDATA[algorithmic]]></category>
		<category><![CDATA[generative]]></category>
		<category><![CDATA[pd]]></category>
		<category><![CDATA[pure data]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[typing]]></category>

		<guid isPermaLink="false">http://computermusicblog.com/blog/2010/10/25/</guid>
		<description><![CDATA[
<p>
Signature performed at Theater Forum Kreuzberg. Text is typed into the patch and converted to chords and notes. <a href="http://www.youtube.com/watch?v=gJ77Vs2WiEQ" target="_blank">[1]</a>
</p>

<p>


</p>
<p> <a class="tt" href="http://twitter.com/intent/tweet?text=Signature+by+Isa+Wilson+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D767" title="Post to Twitter"></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Signature+by+Isa+Wilson+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D767" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&#38;headline=Signature+by+Isa+Wilson" title="Post to Yahoo Buzz"></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&#38;headline=Signature+by+Isa+Wilson" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&#38;title=Signature+by+Isa+Wilson" title="Post to Digg"></a> [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>
Signature performed at Theater Forum Kreuzberg. Text is typed into the patch and converted to chords and notes. <a href="http://www.youtube.com/watch?v=gJ77Vs2WiEQ" target="_blank">[1]</a>
</p>
</blockquote>
<p>
<center><br />
<object width="500" height="400"><param name="movie" value="http://www.youtube.com/v/gJ77Vs2WiEQ?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/gJ77Vs2WiEQ?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="400"></embed></object><br />
</center></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Signature+by+Isa+Wilson+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D767" title="Post to Twitter"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/twitter/tt-twitter3.png" alt="Post to Twitter" /></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Signature+by+Isa+Wilson+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D767" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&amp;headline=Signature+by+Isa+Wilson" title="Post to Yahoo Buzz"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/buzz/tt-buzz.png" alt="Post to Yahoo Buzz" /></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&amp;headline=Signature+by+Isa+Wilson" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&amp;title=Signature+by+Isa+Wilson" title="Post to Digg"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/digg/tt-digg.png" alt="Post to Digg" /></a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&amp;title=Signature+by+Isa+Wilson" title="Post to Digg"> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&amp;t=Signature+by+Isa+Wilson" title="Post to Facebook"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/facebook/tt-facebook.png" alt="Post to Facebook" /></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&amp;t=Signature+by+Isa+Wilson" title="Post to Facebook"> </a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&amp;t=Signature+by+Isa+Wilson" title="Post to MySpace"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/myspace/tt-myspace.png" alt="Post to MySpace" /></a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&amp;t=Signature+by+Isa+Wilson" title="Post to MySpace"> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&amp;title=Signature+by+Isa+Wilson" title="Post to StumbleUpon"><img class="nothumb" src="http://computermusicblog.com/blog/wp-content/plugins/tweet-this/icons/en/su/tt-su.png" alt="Post to StumbleUpon" /></a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/&amp;title=Signature+by+Isa+Wilson" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://computermusicblog.com/blog/2010/10/25/signature-by-isa-wilson/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

