<?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; creativecommons</title>
	<atom:link href="http://codehop.com/tag/creativecommons/feed/" rel="self" type="application/rss+xml" />
	<link>http://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>Splice and Stutter</title>
		<link>http://codehop.com/splice-and-stutter/</link>
		<comments>http://codehop.com/splice-and-stutter/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 18:34:39 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[bt]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[creativecommons]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[jean-luc sinclair]]></category>
		<category><![CDATA[loop]]></category>
		<category><![CDATA[sampler]]></category>

		<guid isPermaLink="false">http://csound.noisepages.com/?p=105</guid>
		<description><![CDATA[Today on The Csound Blog, we&#8217;re going to learn how to build a loop-based sampler out of common household ingredients. Listen: mp3 Download: splice_and_stutter.csd, BT Sample Pack (13.2 MB) Here&#8217;s a brief rundown of today&#8217;s example. A drum loop is loaded &#8230; <a href="http://codehop.com/splice-and-stutter/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-103" title="Splice and Stutter" src="http://codehop.com/wp-content/uploads/2009/10/SpliceAndStutterThumb.jpg" alt="Splice and Stutter" width="200" height="181" />Today on The Csound Blog, we&#8217;re going to learn how to build a loop-based sampler out of common household ingredients.</p>
<p>Listen: <a href="http://www.thumbuki.com/TheCsoundBlog/Splice_and_Stutter.mp3">mp3</a></p>
<p>Download: <a href="http://www.thumbuki.com/TheCsoundBlog/splice_and_stutter.csd">splice_and_stutter.csd</a>, <a href="http://www.archive.org/download/BT/BT44.zip">BT Sample Pack</a> (13.2 MB)</p>
<p>Here&#8217;s a brief rundown of today&#8217;s example. A drum loop is loaded into an f-table with the instrument <em>LoadSample</em>. The instrument <em>SampleEngine</em> plays back selective parts of the loop. Instruments <em>Basic</em>, <em>Stutter</em> and <em>Random</em> are interface instruments that simplify the process of triggering samples.</p>
<p>The <em>LoadSample</em> instrument loads a sample into an f-table, while storing information about the sample into an ad hoc data structure created from <strong>chn</strong> busses. Here isn&#8217;t the place to go into detail. I will say that it is akin to a C struct, and stores the file name, sample rate, length of file (in samples), the tempo, and the number of beats (quarter notes) in the loop. All the user-defined opcodes are support opcodes for the data structure.</p>
<p><em>SampleEngine</em> is the heart of this piece. It works by triggering discreet notes from within the loop, with the loop offset being determined by input it receives via p-field 7. The offset unit is in beats. Let&#8217;s say the loop is 16 beats long. A passed value of 0 plays the first quarter note. A value of 1 plays the second quarter note of the loop, etc.</p>
<p>This instrument is designed to be played by other instruments, rather than being triggered directly by a score i-event. That is&#8230;</p>
<p>Instead of having multiple samplers that do various things, I created a single complex sampler engine that is capable of a wider range of tricks. The problem with complex instruments in Csound is that writing score events can be cumbersome to write and certainly hard to read, especially when dealing with several parameters. This is where the interface instruments come into play.</p>
<p>The interface instruments <em>Basic</em>, <em>Stutter</em> and <em>Random</em> help us tame the complexity of <em>SampleEngine</em> by reducing the number of p-fields needed by the score, and by defining clear behaviors.  <em>Basic</em> is a no thrills controller that simply triggers part of the loop. <em>Stutter</em>, well, stutters. <em>Random</em> randomly picks a beat and plays it.</p>
<p>A greatly added benefit to this approach is that the score is much easier to read. Instead of trying to figure out if a particular i-event stutters or not by scanning a row of numbers, one can just casually look at the name of the instrument used. To put it another way, does this stutter?</p>
<pre>i 5 7 1 0.25 0.5 100 12 0.083 1 0</pre>
<p>How about this?</p>
<pre>i $Stutter 7 1 0.25 0.5 100 12 [1 / 12]</pre>
<p>There are a lots of ins and outs to today&#8217;s example. And I admit, I skipped over most of them. If there is a particular issue or issues you wish for me to expand on, comment below, and I&#8217;ll make it a priority to blog about it in the future.</p>
<p>This sampler is a derivitive work based on an instrument co-developed by <a href="http://www.jeanlucsinclair.com/">Jean-Luc Sinclair</a> (aka Jean-Luc Cohen) and myself back in 2006. The loop in today&#8217;s example is by <a href="http://www.btmusic.com/">BT</a> (aka Brian Transeau), released under a <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons attribution license</a>, and released as part of the <a href="http://wiki.laptop.org/go/Sound_samples">OLPC Sample Library</a>. You can obtain this sample and others <a href="http://www.archive.org/download/BT/BT44.zip">here</a>. (13.2 MB) You will need the loop &#8220;105 Blanketed Lama.wav&#8221; in order to run the csd file.</p>
<p><strong>Update:</strong> There is an issue with the CSD file not running on <span style="text-decoration: line-through;">Windows</span> Windows Me (or earlier). There is now a fix. Download the new <a href="http://www.thumbuki.com/TheCsoundBlog/splice_and_stutter.csd">splice_and_stutter.csd</a>, and see line 269 for details. This only applies to users of <span style="text-decoration: line-through;">Windows</span> Windows Me (or earlier versions).</p>
<p>Thanks to everyone on the <a href="http://www.nabble.com/CSD-error-bug-with-stutter-instrument-on-windows--tt26041900.html">Csound Mailing List</a> who helped straighten this out.</p>
]]></content:encoded>
			<wfw:commentRss>http://codehop.com/splice-and-stutter/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
<enclosure url="http://www.thumbuki.com/TheCsoundBlog/Splice_and_Stutter.mp3" length="314163" type="audio/mpeg" />
		</item>
		<item>
		<title>Fugwhump Presents &#8220;Analog Kit Lite&#8221;</title>
		<link>http://codehop.com/fugwhump-presents-analog-kit-lite/</link>
		<comments>http://codehop.com/fugwhump-presents-analog-kit-lite/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 16:50:18 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[analog]]></category>
		<category><![CDATA[creativecommons]]></category>
		<category><![CDATA[drums]]></category>
		<category><![CDATA[fugwhump]]></category>
		<category><![CDATA[kit]]></category>
		<category><![CDATA[samples]]></category>
		<category><![CDATA[synthesizer]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/?p=240</guid>
		<description><![CDATA[Analog drum kit. Created with a Eurorack modular synthesizer. Includes eight loops and nine single-shot samples. Download Analog Kit Lite at ccmixter. Licensed under Creative Commons. Disclaimer: I&#8217;m affiliated with Fugwhump.]]></description>
				<content:encoded><![CDATA[<p><a href="http://ccmixter.org/files/fugwhump/17527"><img src="http://www.thumbuki.com/images/CoverAnalogKitLite.jpg" alt="Fugwhump's Analog Kit Lite Album Cover" /></a></p>
<p><q>Analog drum kit. Created with a Eurorack modular synthesizer. Includes eight loops and nine single-shot samples.</q></p>
<p>Download <a href="http://ccmixter.org/files/fugwhump/17527">Analog Kit Lite</a> at <a href="http://ccmixter.org/">ccmixter</a>. Licensed under <a href="http://creativecommons.org/">Creative Commons</a>.</p>
<p><strong>Disclaimer</strong>: I&#8217;m affiliated with <a href="http://fugwhump.com/">Fugwhump</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://codehop.com/fugwhump-presents-analog-kit-lite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MUTO &#8211; Graffiti Animation by BLU</title>
		<link>http://codehop.com/muto-graffiti-animation-by-blu/</link>
		<comments>http://codehop.com/muto-graffiti-animation-by-blu/#comments</comments>
		<pubDate>Sun, 08 Jun 2008 15:02:56 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[blu]]></category>
		<category><![CDATA[creativecommons]]></category>
		<category><![CDATA[graffiti]]></category>
		<category><![CDATA[muto]]></category>
		<category><![CDATA[qbert]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/?p=186</guid>
		<description><![CDATA[MUTO An ambiguous animation painted on public walls Made in Buenos Aires and Baden Animation and Editing by Blu Assistant: Sibe Music by Andrea Martignoni Produced by Mercurio Films via Linkfilter.]]></description>
				<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/wKtnX8J_-vI&#038;hl=en"></param><embed src="http://www.youtube.com/v/wKtnX8J_-vI&#038;hl=en" type="application/x-shockwave-flash" width="425" height="344"></embed></object></p>
<blockquote><p>MUTO<br />
An ambiguous animation painted on public walls<br />
Made in Buenos Aires and Baden<br />
Animation and Editing by Blu<br />
Assistant: Sibe<br />
Music by Andrea Martignoni<br />
Produced by Mercurio Films</p></blockquote>
<p>via <a href="http://linkfilter.net/?id=138539">Linkfilter</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://codehop.com/muto-graffiti-animation-by-blu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Personal Log Stardate 60278.1</title>
		<link>http://codehop.com/personal-log-stardate-602781/</link>
		<comments>http://codehop.com/personal-log-stardate-602781/#comments</comments>
		<pubDate>Tue, 24 Oct 2006 15:59:46 +0000</pubDate>
		<dc:creator><![CDATA[Jacob Joaquin]]></dc:creator>
				<category><![CDATA[the cosmos]]></category>
		<category><![CDATA[calarts]]></category>
		<category><![CDATA[creativecommons]]></category>
		<category><![CDATA[csound]]></category>
		<category><![CDATA[personallog]]></category>
		<category><![CDATA[portfolio]]></category>

		<guid isPermaLink="false">http://www.thumbuki.com/20061024/personal-log-stardate-602781.html</guid>
		<description><![CDATA[Csound Instr I&#8217;ve recently started the painstaking process of compiling all of my compositions into one cohesive online portfolio. Already, I&#8217;ve discovered I&#8217;ve lost some older works. Oops! The butterflies are nibbling at my stomach as I type. My hope &#8230; <a href="http://codehop.com/personal-log-stardate-602781/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div id="postimage" class="left" style="width: 202px"><img src="http://www.thumbuki.com/images/c64sound.gif" width=200px height=200px />
<p>Csound Instr</p>
</div>
<p>I&#8217;ve recently started the painstaking process of compiling all of my compositions into one cohesive online portfolio.  Already, I&#8217;ve discovered I&#8217;ve lost some older works.  Oops!  The butterflies are nibbling at my stomach as I type.  My hope is that some of the people I&#8217;ve collaborated with in the past have copies.  There is always the possibility that one or two pieces exist in an archive at <a href="http://calarts.edu/">CalArts</a>.  But I&#8217;m going to have to face the reality that some of my works are forever lost&#8230;</p>
<p>The blunt of the project should take me about two weeks.  After which, I will slowly add to the collection.  I have a few papers and tutorials I&#8217;ve written I will eventually include, though the priority for now is the music.  I want to note that I&#8217;m re-releasing most of these works under a <a href="http://creativecommons.org/">Creative Commons</a> license.  I subscribe to the philosophy that putting too many restraints on art can kill the art.  Creative Commons allows me to free my music so that it might someday find an audience, and hopefully inspire derivative works.</p>
]]></content:encoded>
			<wfw:commentRss>http://codehop.com/personal-log-stardate-602781/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
