<?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>codehop &#187; video</title>
	<atom:link href="https://codehop.com/tag/video/feed/" rel="self" type="application/rss+xml" />
	<link>https://codehop.com</link>
	<description>#code #art #music</description>
	<lastBuildDate>Mon, 23 Apr 2012 18:37:35 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>Slipmat Prototype &amp; Processing</title>
		<link>https://codehop.com/slipmat-prototype-processing/</link>
		<comments>https://codehop.com/slipmat-prototype-processing/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 16:14:18 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[csound]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[prototype]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[visuals]]></category>

		<guid isPermaLink="false">http://slipmat.noisepages.com/?p=96</guid>
		<description><![CDATA[I experimenting combining the first Slipmat prototype (built with the Csound API) with Processing. Getting the two systems working together was fairly straight forward. Here&#8217;s the code that generated the video. The following method from class Disc does two things &#8230; <a href="https://codehop.com/slipmat-prototype-processing/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><embed src="http://blip.tv/play/Ab2RAgI" type="application/x-shockwave-flash" width="480" height="326" allowscriptaccess="always" allowfullscreen="true"></embed></p>
<p>I experimenting combining the first <a href="https://sourceforge.net/projects/slipmat/">Slipmat prototype</a> (built with the Csound API) with <a href="http://processing.org/">Processing</a>. Getting the two systems working together was fairly straight forward. Here&#8217;s the <a href="http://slipmat.svn.sourceforge.net/viewvc/slipmat/src/com/thumbuki/slipmat/examples/VisualsWithProcessing.java?revision=21">code</a> that generated the video. </p>
<p>The following method from class Disc does two things when a disc collides with a border: change direction of the disc and trigger a slipmat event:</p>
<pre style="font-family: 'Courier New', courier, monaco, monospace, sans-serif; font-size: 1.2em; padding-bottom: 16px">
public void moveDisc() {
    x += xVelocity * SCALE_VELOCITY;
    y += yVelocity * SCALE_VELOCITY;

    if (x <= DISC_RADIUS || x >= width - 1 - DISC_RADIUS) {
        xVelocity *= -1;
        playNote();
    }

    if (y <= DISC_RADIUS || y >= height - 1 - DISC_RADIUS) {
        yVelocity *= -1;
        playNote();
    }
}
</pre>
<p>The method playNote() also belongs to class Disc, and is where the actual triggering of the Slipmat event occurs. The instances sp1 and sp2 are part of the Slipmat system. The &#8220;sp&#8221; is short for &#8220;sine percussion.&#8221;</p>
<pre style="font-family: 'Courier New', courier, monaco, monospace, sans-serif; font-size: 1.2em; padding-bottom: 16px">
public void playNote() {
    sp1.playNote(0.0, 0.35 * (1 - x / width), frequency);
    sp2.playNote(0.0, 0.35 * x / width, frequency);
}
</pre>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/slipmat-prototype-processing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drag&#8217;n&#8217;Drop Csound for Max for Live</title>
		<link>https://codehop.com/dragndrop-csound-for-max-for-live/</link>
		<comments>https://codehop.com/dragndrop-csound-for-max-for-live/#comments</comments>
		<pubDate>Thu, 01 Apr 2010 15:04:33 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[ableton live]]></category>
		<category><![CDATA[bohlen-pierce]]></category>
		<category><![CDATA[dr. richard boulanger]]></category>
		<category><![CDATA[m4l]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://csound.noisepages.com/?p=376</guid>
		<description><![CDATA[Drag and drop Csound in Ableton Live from Enrico de Trizio on Vimeo. Dr. Richard Boulanger&#8217;s Bohlen-Pierce Csound instruments played in Ableton Live with Enrico de Trizio&#8217;s Csound drag and drop Max Instrument. (via Piscoff&#8217;s twitter stream)]]></description>
				<content:encoded><![CDATA[<p><object width="400" height="250"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=10516973&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=10516973&amp;server=vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="250"></embed></object>
<p><a href="http://vimeo.com/10516973">Drag and drop Csound in Ableton Live</a> from <a href="http://vimeo.com/user2064876">Enrico de Trizio</a> on <a href="http://vimeo.com">Vimeo</a>.</p>
<p>Dr. Richard Boulanger&#8217;s Bohlen-Pierce Csound instruments played in Ableton Live with Enrico de Trizio&#8217;s Csound drag and drop Max Instrument. (via <a href="http://twitter.com/Psicoff">Piscoff&#8217;s twitter stream</a>)</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/dragndrop-csound-for-max-for-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>QuteCsound: Where to start?</title>
		<link>https://codehop.com/qutecsound-where-to-start/</link>
		<comments>https://codehop.com/qutecsound-where-to-start/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 15:43:11 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[qutecsound]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://csound.noisepages.com/?p=362</guid>
		<description><![CDATA[Alex Hofmann has created four videos demonstrating how to get up and running with QuteCsound, the new front-end editor for Csound. This first video demonstrates the built-in help system and included tutorials. Here are the other three: A 58-second intro, &#8230; <a href="https://codehop.com/qutecsound-where-to-start/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/oE0jRCfYwTA&#038;hl=en_US&#038;fs=1&#038;color1=0x5d1719&#038;color2=0xcd311b"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/oE0jRCfYwTA&#038;hl=en_US&#038;fs=1&#038;color1=0x5d1719&#038;color2=0xcd311b" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<p>Alex Hofmann has created four videos demonstrating how to get up and running with QuteCsound, the new front-end editor for Csound. This first video demonstrates the built-in help system and included tutorials. Here are the other three: <a href="http://www.youtube.com/watch?v=g0AEok0FlS0">A 58-second intro</a>, <a href="http://www.youtube.com/watch?v=fFx5QPLW6Cg">Using MIDI</a> and <a href="http://www.youtube.com/watch?v=sFnZytyNuWc">Configuration</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/qutecsound-where-to-start/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CsMultitouch &#8211; Multitouch User Interfaces for Csound</title>
		<link>https://codehop.com/csmultitouch-multitouch-user-interfaces-for-csound/</link>
		<comments>https://codehop.com/csmultitouch-multitouch-user-interfaces-for-csound/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 15:36:19 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[GUI]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[multitouch]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://csound.noisepages.com/?p=356</guid>
		<description><![CDATA[This is a demonstration of the software i wrote for my MSc In Music Technology at DKIT under the supervision of Rory Walsh. The software is used to create custom multitouch user interfaces for controlling Csound Instruments. It allows users &#8230; <a href="https://codehop.com/csmultitouch-multitouch-user-interfaces-for-csound/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/agk9iSx5oe8&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/agk9iSx5oe8&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object></p>
<blockquote><p>This is a demonstration of the software i wrote for my MSc In Music Technology at DKIT under the supervision of Rory Walsh. The software is used to create custom multitouch user interfaces for controlling Csound Instruments. It allows users to define gui elements, such as sliders and buttons, in their csound file. The .csd file is parsed by CsMultitouch to retrieve this information. Said information is then used to create the multitouch interface using the PyMT framework.</p></blockquote>
<p>I want this.</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/csmultitouch-multitouch-user-interfaces-for-csound/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Video: Carnival</title>
		<link>https://codehop.com/video-carnival/</link>
		<comments>https://codehop.com/video-carnival/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 00:51:56 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[blender]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://csound.noisepages.com/?p=59</guid>
		<description><![CDATA[&#8220;First of six visualizations of Darren Nelsen&#8217;s CSound, using Blender. 20 March 2009, Eyedrum, Atlanta, GA.&#8221; (via fatmilktv&#8217;s photostream)]]></description>
				<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="400" height="267" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="flashvars" value="intl_lang=en-us&amp;photo_secret=b794789d5b&amp;photo_id=3392232504" /><param name="bgcolor" value="#000000" /><param name="allowFullScreen" value="true" /><param name="src" value="http://www.flickr.com/apps/video/stewart.swf?v=71377" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="400" height="267" src="http://www.flickr.com/apps/video/stewart.swf?v=71377" allowfullscreen="true" bgcolor="#000000" flashvars="intl_lang=en-us&amp;photo_secret=b794789d5b&amp;photo_id=3392232504"></embed></object></p>
<p>&#8220;First of six visualizations of Darren Nelsen&#8217;s CSound, using Blender.</p>
<p>20 March 2009, Eyedrum, Atlanta, GA.&#8221;</p>
<p>(via <a href="http://www.flickr.com/photos/fatmilktv/3392232504/">fatmilktv&#8217;s photostream</a>)</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/video-carnival/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Take On Me: Literal Video Version</title>
		<link>https://codehop.com/take-on-me-literal-video-version/</link>
		<comments>https://codehop.com/take-on-me-literal-video-version/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 06:55:04 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[ahha]]></category>
		<category><![CDATA[funny]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/?p=238</guid>
		<description><![CDATA[LOL funny. IMHO.]]></description>
				<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/8HE9OQ4FnkQ&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/8HE9OQ4FnkQ&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>LOL funny.  IMHO.</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/take-on-me-literal-video-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stockhausen on &#8216;sounds&#8217;, 1972</title>
		<link>https://codehop.com/stockhausen-on-sounds-1972/</link>
		<comments>https://codehop.com/stockhausen-on-sounds-1972/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 15:49:27 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[lecture]]></category>
		<category><![CDATA[sound]]></category>
		<category><![CDATA[stockhausen]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/?p=226</guid>
		<description><![CDATA[]]></description>
				<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/pIPVc2Jvd0w&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/pIPVc2Jvd0w&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/stockhausen-on-sounds-1972/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saul Williams: Convict Colony</title>
		<link>https://codehop.com/saul-williams-convict-colony/</link>
		<comments>https://codehop.com/saul-williams-convict-colony/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 18:04:16 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[saulwilliams]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/?p=204</guid>
		<description><![CDATA[The music video for Convict Colony by Saul Williams aka Niggy Tardust! Produced by EagleHawk. Directed/Produced by Rob Leitzell &#038; Chris Edley. 7/9/2008. Out on Fader Label]]></description>
				<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/rM5VS97Jx-U&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><embed src="http://www.youtube.com/v/rM5VS97Jx-U&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"></embed></object></p>
<blockquote><p>The music video for Convict Colony by Saul Williams aka Niggy Tardust! Produced by EagleHawk. Directed/Produced by Rob Leitzell &#038; Chris Edley. 7/9/2008. Out on Fader Label</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/saul-williams-convict-colony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wall•E and the Rhythmic Synth</title>
		<link>https://codehop.com/wall%e2%80%a2e-and-the-rhythmic-synth/</link>
		<comments>https://codehop.com/wall%e2%80%a2e-and-the-rhythmic-synth/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 21:48:58 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[nycr]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[rock]]></category>
		<category><![CDATA[synthesizer]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[vimeo]]></category>
		<category><![CDATA[walle]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/?p=197</guid>
		<description><![CDATA[Wall•E and the Rhythmic Synth from Gian Pablo Villamil on Vimeo. Gian Pablo, maker of this sweet algorithmic synth forces Wall-E to rock out. Via NYCR.]]></description>
				<content:encoded><![CDATA[<p><object width="400" height="302"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=1316711&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://www.vimeo.com/moogaloop.swf?clip_id=1316711&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="302"></embed></object><br /><a href="http://www.vimeo.com/1316711?pg=embed&#038;sec=1316711">Wall•E and the Rhythmic Synth</a> from <a href="http://www.vimeo.com/user317640?pg=embed&#038;sec=1316711">Gian Pablo Villamil</a> on <a href="http://vimeo.com?pg=embed&#038;sec=1316711">Vimeo</a>.</p>
<blockquote><p>Gian Pablo, maker of this sweet algorithmic synth forces Wall-E to rock out.</p></blockquote>
<p>Via <a href="http://www.nycresistor.com/2008/07/10/dance-wall-e-dance/">NYCR</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/wall%e2%80%a2e-and-the-rhythmic-synth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>kindercrasher</title>
		<link>https://codehop.com/kindercrasher/</link>
		<comments>https://codehop.com/kindercrasher/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 16:32:41 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[4kintro]]></category>
		<category><![CDATA[art]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[demoscene]]></category>
		<category><![CDATA[kindercrasher]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[vimeo]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/?p=192</guid>
		<description><![CDATA[kindercrasher from Inigo Quilez on Vimeo. This is my contribution to the realtime 4 kilobytes visuals (usually known as &#8220;4k intro&#8221;) competition for Inspire 2008 (held in Spain). It is a set of spheres with radious controlled by the Fourier &#8230; <a href="https://codehop.com/kindercrasher/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><object width="400" height="302"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=1007200&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://www.vimeo.com/moogaloop.swf?clip_id=1007200&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="302"></embed></object><br /><a href="http://www.vimeo.com/1007200?pg=embed&#038;sec=1007200">kindercrasher</a> from <a href="http://www.vimeo.com/iq?pg=embed&#038;sec=1007200">Inigo Quilez</a> on <a href="http://vimeo.com?pg=embed&#038;sec=1007200">Vimeo</a>.</p>
<blockquote><p><q>This is my contribution to the realtime 4 kilobytes visuals (usually known as &#8220;4k intro&#8221;) competition for Inspire 2008 (held in Spain). It is a set of spheres with radious controlled by the Fourier Transform (without the &#8220;fast&#8221;) of the music. it contains some realtime ambient occlusion and depth of field. It&#8217;s done in C, using shaders (GLSL). Once again, it all fits in a 4 kilobytes executable (music, animation, rendering engine and effects).</q></p></blockquote>
<p>Wicked awesome! Via <a href="http://createdigitalmotion.com/2008/06/23/kindercrasher-epic-reactive-visuals-and-music-in-4k-of-c-code/">Create Digital Motion</a>.</p>
]]></content:encoded>
			<wfw:commentRss>https://codehop.com/kindercrasher/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
