<?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; video</title>
	<atom:link href="http://computermusicblog.com/blog/index.php/tag/video/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>How to Render Synchronous Audio and Video in Processing using Beads</title>
		<link>http://computermusicblog.com/blog/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/</link>
		<comments>http://computermusicblog.com/blog/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 22:24:12 +0000</pubDate>
		<dc:creator>evan</dc:creator>
				<category><![CDATA[Algorithmic]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Sound Art]]></category>
		<category><![CDATA[Synthesis]]></category>
		<category><![CDATA[Technical]]></category>
		<category><![CDATA[beads]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://computermusicblog.com/blog/2012/01/07/</guid>
		<description><![CDATA[<p>
Rendering video in Processing is easy. The <a href="http://processing.org/reference/libraries/video/MovieMaker.html" target="_blank">MovieMaker class</a> makes it incredibly easy to render Quicktime video files from a Processing sketch. Unfortunately, Processing doesn&#8217;t supply tools for rendering audio using the MovieMaker class. Hence, rendering the output from a multimedia program can really be a headache.
</p>
<p>
I&#8217;ve spent a lot of time working [...]]]></description>
			<content:encoded><![CDATA[<p>
Rendering video in Processing is easy. The <a href="http://processing.org/reference/libraries/video/MovieMaker.html" target="_blank">MovieMaker class</a> makes it incredibly easy to render Quicktime video files from a Processing sketch. Unfortunately, Processing doesn&#8217;t supply tools for rendering audio using the MovieMaker class. Hence, rendering the output from a multimedia program can really be a headache.
</p>
<p>
I&#8217;ve spent a lot of time working on this problem in the last few months. I tried screen-capture software, but even <a href="http://www.techsmith.com/camtasia.html" target="_blank">the professional screen capture apps</a> aren&#8217;t suited to the task. They cause glitches in the audio, drop frames and slow down the sketch itself. I also tried rendering using external hardware. Unfortunately, <a href="http://www.epiphan.com/products/frame-grabbers/vga2usb/" target="_blank">the only affordable device for capturing VGA output</a> averages a mediocre 10 frames per second, and the frame rate is unacceptably inconsistent.
</p>
<p>
So the solution had to come from code, and in the end, the solution is pretty simple. Admittedly, this solution still slows down your sketch, but if you lower the resolution, you can get acceptable, synchronized audio and video which can be combined in any video editor.
</p>
<p> <br/></p>
<p><h3>Synchronizing MovieMaker Based on the Audio Stream</h3>
</p>
<p>
The solution is to render video frames based on the position in the audio output buffer. Simply monitor the position in the audio stream, and render a video frame every so many samples.
</p>
<p>
There are three basic code changes that are necessary to get this working. First, calculate the number of audio samples that will occur per frame of video. For this to work, the frame rate must be relatively low. 12 works well for me.
</p>
<p><code><br />
int MovieFrameRate = 12;<br />
float AudioSamplesPerFrame = 44100.0f / (float)MovieFrameRate;<br />
</code></p>
<p>
Then set up your audio recording objects as detailed in my free ebook: <a href="http://computermusicblog.com/blog/sonifyingprocessing/" target="_blank">Sonifying Processing: The Beads Tutorial</a>.
</p>
<p><code><br />
AudioFormat af = new AudioFormat(44100.0f, 16, 1, true, true);<br />
outputSample = new Sample(af, 44100);<br />
rts = new RecordToSample(ac, outputSample, RecordToSample.Mode.INFINITE);<br />
</code></p>
<p>
Finally, call this subroutine in your draw function, and make sure to finalize the audio and the video when the program ends.
</p>
<p><code><br />
// this routines adds video frames based on how much audio has been processed<br />
void SyncVideoAndAudio()<br />
{<br />
&nbsp;&nbsp;// if we have enough audio to do so, then add a frame to the video<br />
&nbsp;&nbsp;if( rts.getNumFramesRecorded() &gt; MovieFrameCount * AudioSamplesPerFrame )<br />
&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;// we may have to add multiple frames<br />
&nbsp;&nbsp;&nbsp;&nbsp;float AudioSamples = rts.getNumFramesRecorded() - (MovieFrameCount * AudioSamplesPerFrame);<br />
&nbsp;&nbsp;&nbsp;&nbsp;while( AudioSamples &gt; AudioSamplesPerFrame )<br />
&nbsp;&nbsp;&nbsp;&nbsp;{<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;mm.addFrame();<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;MovieFrameCount++;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AudioSamples -= AudioSamplesPerFrame;<br />
&nbsp;&nbsp;&nbsp;&nbsp;}<br />
&nbsp;&nbsp;}<br />
}<br />
</code></p>
<p>
After your program completes, you just need to stitch the audio and video together using any old video editor at your disposal.
</p>
<p>
Here&#8217;s an example sketch rendered using this method.
</p>
<p>
<center><br />
<iframe width="500" height="369" src="http://www.youtube.com/embed/CoCbDsD60vg" frameborder="0" allowfullscreen></iframe><br />
</center>
</p>
<p>
And here is the source code for that sketch: <a href="http://computermusicblog.com/blog/wp-content/uploads/2012/01/Video_Audio_Sync_Test_03.zip">Video_Audio_Sync_Test_03</a>
</p>
<p>
I hope this saves you some time and money!</p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1226" 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=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1226" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/&amp;headline=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads" 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/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/&amp;headline=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/&amp;title=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads" 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/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/&amp;title=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads" title="Post to Digg"> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/&amp;t=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads" 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/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/&amp;t=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads" title="Post to Facebook"> </a> <a class="tt" href="http://www.myspace.com/Modules/PostTo/Pages/?l=3&amp;u=http://computermusicblog.com/blog/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/&amp;t=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads" 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/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/&amp;t=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads" title="Post to MySpace"> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/&amp;title=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads" 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/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/&amp;title=How+to+Render+Synchronous+Audio+and+Video+in+Processing+using+Beads" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://computermusicblog.com/blog/2012/01/07/how-to-render-synchronous-audio-and-video-in-processing-using-beads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Art of Sounds &#8211; Pierre Henry Documentary</title>
		<link>http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/</link>
		<comments>http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 08:29:29 +0000</pubDate>
		<dc:creator>evan</dc:creator>
				<category><![CDATA[History]]></category>
		<category><![CDATA[Sound Art]]></category>
		<category><![CDATA[Musique Concrete]]></category>
		<category><![CDATA[pierre henry]]></category>
		<category><![CDATA[sound art]]></category>
		<category><![CDATA[video]]></category>

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


</p>
<p> <a class="tt" href="http://twitter.com/intent/tweet?text=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1186" title="Post to Twitter"></a> <a class="tt" href="http://twitter.com/intent/tweet?text=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1186" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/&#38;headline=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" title="Post to Yahoo Buzz"></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/&#38;headline=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/&#38;title=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" title="Post to Digg"></a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/&#38;title=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" title="Post to Digg"> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/&#38;t=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" title="Post to Facebook"></a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/&#38;t=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" title="Post to Facebook"> </a> [...]]]></description>
			<content:encoded><![CDATA[<p>
<center><br />
<iframe width="500" height="284" src="http://www.youtube.com/embed/1uVCYL8zVBk" 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=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1186" 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=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1186" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/&amp;headline=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" 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/12/12/the-art-of-sounds-pierre-henry-documentary/&amp;headline=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/&amp;title=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" 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/12/12/the-art-of-sounds-pierre-henry-documentary/&amp;title=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" title="Post to Digg"> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/&amp;t=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" 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/12/12/the-art-of-sounds-pierre-henry-documentary/&amp;t=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" 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/12/12/the-art-of-sounds-pierre-henry-documentary/&amp;t=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" 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/12/12/the-art-of-sounds-pierre-henry-documentary/&amp;t=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" title="Post to MySpace"> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/&amp;title=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" 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/12/12/the-art-of-sounds-pierre-henry-documentary/&amp;title=The+Art+of+Sounds+%E2%80%93+Pierre+Henry+Documentary" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://computermusicblog.com/blog/2011/12/12/the-art-of-sounds-pierre-henry-documentary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Maja Ratkje&#8217;s Voice</title>
		<link>http://computermusicblog.com/blog/2011/11/09/maja-ratkjes-voice/</link>
		<comments>http://computermusicblog.com/blog/2011/11/09/maja-ratkjes-voice/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 21:37:54 +0000</pubDate>
		<dc:creator>evan</dc:creator>
				<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[New Music]]></category>
		<category><![CDATA[Sound Art]]></category>
		<category><![CDATA[diagetic]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[Musique Concrete]]></category>
		<category><![CDATA[narrative]]></category>
		<category><![CDATA[sound art]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://computermusicblog.com/blog/2011/11/09/</guid>
		<description><![CDATA[<p>
This is a preview of a video that is apparently being released in 2012. It is probably the most compelling &#8220;preview&#8221; that I have ever seen. The contrast of diagetic/nondiagetic sound with narrative/non-narrative film is really interesting. I can&#8217;t wait to see what the full production looks like.
</p>
<p>


</p>
<p> <a class="tt" href="http://twitter.com/intent/tweet?text=Maja+Ratkje%E2%80%99s+Voice+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1136" title="Post to Twitter"></a> <a [...]]]></description>
			<content:encoded><![CDATA[<p>
This is a preview of a video that is apparently being released in 2012. It is probably the most compelling &#8220;preview&#8221; that I have ever seen. The contrast of diagetic/nondiagetic sound with narrative/non-narrative film is really interesting. I can&#8217;t wait to see what the full production looks like.
</p>
<p>
<center><br />
<iframe src="http://player.vimeo.com/video/17398880?title=0&amp;byline=0&amp;portrait=0" width="500" height="281" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe><br />
</center></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Maja+Ratkje%E2%80%99s+Voice+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1136" 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=Maja+Ratkje%E2%80%99s+Voice+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1136" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/11/09/maja-ratkjes-voice/&amp;headline=Maja+Ratkje%E2%80%99s+Voice" 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/09/maja-ratkjes-voice/&amp;headline=Maja+Ratkje%E2%80%99s+Voice" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/11/09/maja-ratkjes-voice/&amp;title=Maja+Ratkje%E2%80%99s+Voice" 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/09/maja-ratkjes-voice/&amp;title=Maja+Ratkje%E2%80%99s+Voice" title="Post to Digg"> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/11/09/maja-ratkjes-voice/&amp;t=Maja+Ratkje%E2%80%99s+Voice" 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/09/maja-ratkjes-voice/&amp;t=Maja+Ratkje%E2%80%99s+Voice" 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/09/maja-ratkjes-voice/&amp;t=Maja+Ratkje%E2%80%99s+Voice" 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/09/maja-ratkjes-voice/&amp;t=Maja+Ratkje%E2%80%99s+Voice" title="Post to MySpace"> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/11/09/maja-ratkjes-voice/&amp;title=Maja+Ratkje%E2%80%99s+Voice" 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/09/maja-ratkjes-voice/&amp;title=Maja+Ratkje%E2%80%99s+Voice" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://computermusicblog.com/blog/2011/11/09/maja-ratkjes-voice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Max Hattler, i.m.klif (visuals) + Hanfreich, Strmljan (music) at CAMP Festival for Visual Music 2011</title>
		<link>http://computermusicblog.com/blog/2011/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/</link>
		<comments>http://computermusicblog.com/blog/2011/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 06:58:14 +0000</pubDate>
		<dc:creator>evan</dc:creator>
				<category><![CDATA[Live Electronic Music]]></category>
		<category><![CDATA[New Music]]></category>
		<category><![CDATA[AudioVisual]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://computermusicblog.com/blog/2011/09/28/</guid>
		<description><![CDATA[
<p>
Full-length video documentation of audiovisual live improvisation performance at CAMP Festival for Visual Music, HfG, Karlsruhe, Germany, 24 September 2011. <a href="http://www.vimeo.com/29631795" target="_blank">[1]</a>
</p>

<p>


</p>
<p> <a class="tt" href="http://twitter.com/intent/tweet?text=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music...+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1060" title="Post to Twitter"></a> <a class="tt" href="http://twitter.com/intent/tweet?text=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music...+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1060" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&#38;headline=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" title="Post to Yahoo Buzz"></a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&#38;headline=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&#38;title=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" title="Post [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>
Full-length video documentation of audiovisual live improvisation performance at CAMP Festival for Visual Music, HfG, Karlsruhe, Germany, 24 September 2011. <a href="http://www.vimeo.com/29631795" target="_blank">[1]</a>
</p>
</blockquote>
<p>
<center><br />
<iframe src="http://player.vimeo.com/video/29631795?title=0&amp;byline=0&amp;portrait=0" width="500" height="375" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe><br />
</center></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music...+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1060" 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=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music...+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D1060" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&amp;headline=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" 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/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&amp;headline=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&amp;title=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" 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/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&amp;title=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" title="Post to Digg"> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&amp;t=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" 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/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&amp;t=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" 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/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&amp;t=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" 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/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&amp;t=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" title="Post to MySpace"> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&amp;title=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" 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/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/&amp;title=Max+Hattler%2C+i.m.klif+%28visuals%29+%2B+Hanfreich%2C+Strmljan+%28music%29+at+CAMP+Festival+for+Visual+Music+2011" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://computermusicblog.com/blog/2011/09/28/max-hattler-i-m-klif-visuals-hanfreich-strmljan-music-at-camp-festival-for-visual-music-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beat Me by Oliver Szymczak</title>
		<link>http://computermusicblog.com/blog/2011/09/03/beat-me-by-oliver-szymczak/</link>
		<comments>http://computermusicblog.com/blog/2011/09/03/beat-me-by-oliver-szymczak/#comments</comments>
		<pubDate>Sat, 03 Sep 2011 18:04:13 +0000</pubDate>
		<dc:creator>evan</dc:creator>
				<category><![CDATA[Live Electronic Music]]></category>
		<category><![CDATA[Multimedia]]></category>
		<category><![CDATA[bass]]></category>
		<category><![CDATA[jitter]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[loops]]></category>
		<category><![CDATA[maxmsp]]></category>
		<category><![CDATA[midi]]></category>
		<category><![CDATA[multimedia]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://computermusicblog.com/blog/2011/09/03/</guid>
		<description><![CDATA[
<p>
BeatMe is a solo performance with video projection, sound and double bass.
The video/sound/Text is handled with Max/MSP, triggered by a midi-foot switch, giving the control of what is happening while playing the music.
</p>
<p>
Thinking about the relation of music and moving images gave me the idea of bending the codes of composition for visuals and music [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>
BeatMe is a solo performance with video projection, sound and double bass.<br />
The video/sound/Text is handled with Max/MSP, triggered by a midi-foot switch, giving the control of what is happening while playing the music.
</p>
<p>
Thinking about the relation of music and moving images gave me the idea of bending the codes of composition for visuals and music a little, changing the rules of narratives to repetition and variation, bringing them closer, making the images dance and give the music a different sense. It is all about perception, thinking and emotions. We have ideas and a feeling about ourselves in the world and all that relations inbetween. All that processes that determine who we think we are and how we feel about that. We live in an optical and sound situation.
</p>
<p>
Seeing and hearing through the things.<br />
What you see is not what is there. Don&#8217;t misunderstand. What you see is what your neuro-circuits are allowing you to see. Waves and particles of molecularities hitting on your sensory system recalling/actualizing knowledge bases built up in the past and you are using them to look into the future, forgetting about the moment. Can this be correct?<br />
The things you see are always representations of yourself. And you are ab/using them to reflect yourself, to tell to yourself what you dis/like about yourself. The world as you see it is nothing more than a mirror, reflecting back your desires and your fears.
</p>
</blockquote>
<p>
<center><br />
<iframe src="http://player.vimeo.com/video/28481373?title=0&amp;byline=0&amp;portrait=0" width="500" height="400" frameborder="0"></iframe><br />
</center></p>
<div class="tweetthis" style="text-align:left;"><p> <a class="tt" href="http://twitter.com/intent/tweet?text=Beat+Me+by+Oliver+Szymczak+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D995" 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=Beat+Me+by+Oliver+Szymczak+http%3A%2F%2Fcomputermusicblog.com%2Fblog%2F%3Fp%3D995" title="Post to Twitter"> </a> <a class="tt" href="http://buzz.yahoo.com/buzz?targetUrl=http://computermusicblog.com/blog/2011/09/03/beat-me-by-oliver-szymczak/&amp;headline=Beat+Me+by+Oliver+Szymczak" 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/09/03/beat-me-by-oliver-szymczak/&amp;headline=Beat+Me+by+Oliver+Szymczak" title="Post to Yahoo Buzz"> </a> <a class="tt" href="http://digg.com/submit?url=http://computermusicblog.com/blog/2011/09/03/beat-me-by-oliver-szymczak/&amp;title=Beat+Me+by+Oliver+Szymczak" 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/09/03/beat-me-by-oliver-szymczak/&amp;title=Beat+Me+by+Oliver+Szymczak" title="Post to Digg"> </a> <a class="tt" href="http://www.facebook.com/share.php?u=http://computermusicblog.com/blog/2011/09/03/beat-me-by-oliver-szymczak/&amp;t=Beat+Me+by+Oliver+Szymczak" 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/09/03/beat-me-by-oliver-szymczak/&amp;t=Beat+Me+by+Oliver+Szymczak" 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/09/03/beat-me-by-oliver-szymczak/&amp;t=Beat+Me+by+Oliver+Szymczak" 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/09/03/beat-me-by-oliver-szymczak/&amp;t=Beat+Me+by+Oliver+Szymczak" title="Post to MySpace"> </a> <a class="tt" href="http://stumbleupon.com/submit?url=http://computermusicblog.com/blog/2011/09/03/beat-me-by-oliver-szymczak/&amp;title=Beat+Me+by+Oliver+Szymczak" 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/09/03/beat-me-by-oliver-szymczak/&amp;title=Beat+Me+by+Oliver+Szymczak" title="Post to StumbleUpon"> </a></p></div>]]></content:encoded>
			<wfw:commentRss>http://computermusicblog.com/blog/2011/09/03/beat-me-by-oliver-szymczak/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

