<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>eric archer . net &#187; video</title>
	<link>http://ericarcher.net</link>
	<description>experimental electronic media</description>
	<pubDate>Wed, 01 Sep 2010 04:12:47 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>CPLD Hello World</title>
		<link>http://ericarcher.net/2010/08/21/cpld-hello-world/</link>
		<comments>http://ericarcher.net/2010/08/21/cpld-hello-world/#comments</comments>
		<pubDate>Sat, 21 Aug 2010 06:26:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ericarcher.net/2010/08/21/cpld-hello-world/</guid>
		<description><![CDATA[



After a few days of studying and helpful replies from Steve in tech support, I&#8217;d figured out Lattice Semiconductor&#8217;s  free design software ispLEVER Classic, and successfully downloaded a  simple &#8216;hello world&#8217; demo to a Complex Programmable Logic Device (CPLD)  chip.  My highest hopes were confirmed&#8230;  all the steps are possible [...]]]></description>
			<content:encoded><![CDATA[<p align="center"><object width="450" height="278">
<param name="movie" value="about:blank"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/dJtmVZwZNrM?fs=1&amp;hl=en_US&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="450" height="278"></embed></object></p>
<p align="left">After a few days of studying and helpful replies from Steve in tech support, I&#8217;d figured out Lattice Semiconductor&#8217;s  free design software ispLEVER Classic, and successfully downloaded a  simple &#8216;hello world&#8217; demo to a <a href="http://en.wikipedia.org/wiki/CPLD" target="_blank">Complex Programmable Logic Device</a> (CPLD)  chip.  My highest hopes were confirmed&#8230;  all the steps are possible  without writing a line of code.  Hooray!  You can draw a schematic on  the screen and transform it to a piece of hardware in seconds.  What a  futuristic feeling.  The chip itself is some kind of silicon fabric made  of <a href="http://www.latticesemi.com/lit/docs/manuals/ispmacro.pdf" target="_blank">zillions of nano-size zombies</a> that reconfigure themselves on command&#8230;?!   anyway, I&#8217;m not scared.  Indeed I&#8217;m thrilled with the power of this technique.</p>
<p align="center"> <a href="http://www.flickr.com/photos/22401961@N00/4903242079/" title="ispLEVER screenshot" rel="flickr-mgr"><img src="http://farm5.static.flickr.com/4093/4903242079_a530496b15_m.jpg" alt="ispLEVER screenshot" class="flickr-medium" /></a></p>
<p align="left">The software is free, its called <a href="http://www.latticesemi.com/products/designsoftware/isplever/ispleverclassic/index.cfm?source=sidebar" target="_blank">ispLEVER  Classic 1.4</a>.  Installing it on my Vista laptop wasn&#8217;t quite a snap  because there are three or four modules to install in order, and you  need to <a href="http://kb.wisc.edu/helpdesk/page.php?id=6818" target="_blank">find your computer&#8217;s MAC address</a> to activate the license.  I  have to use &#8216;run as administrator&#8217; to launch it too, but whatever.</p>
<p align="left">The programmer is called <a href="http://www.latticesemi.com/lit/docs/devtools/dlcable.pdf" target="_blank">ispDOWNLOAD</a>, and it was about $175.</p>
<p align="left">The CPLD chip is <a href="http://www.latticesemi.com/lit/docs/datasheets/cpld/2032e.pdf" target="_blank">ispLSI2032VE</a>, actually nearly obsolete now but the software still supports it.</p>
<p align="left">I  think soon I will try to understand Lattice&#8217;s <a href="http://www.latticesemi.com/documents/MachXO_4W.pdf" target="_blank">MachXO</a> series.  They&#8217;re  related to FPGAs, have built in <a href="http://en.wikipedia.org/wiki/Dual_port_RAM" target="_blank">dual-port RAM</a>, clock generator, clock  multiplier&#8230; a nice toolbox.</p>
<p align="left">Its inspiring to think that even if the schematic in your head is extra complex, you can just  draw it and *boom* little elves build it for you in seconds.</p>
<p align="left">Of course its limited to digital circuits.  Not analog yet&#8230;</p>
<p align="center"><a href="http://www.flickr.com/photos/22401961@N00/4912535894/" rel="flickr-mgr"><img src="http://farm5.static.flickr.com/4101/4912535894_ff4cb7ecfb_m.jpg" class="flickr-medium" /></a></p>
<p align="center"><a href="http://www.flickr.com/photos/22401961@N00/4912535892/" rel="flickr-mgr"><img src="http://farm5.static.flickr.com/4136/4912535892_58184940eb_m.jpg" class="flickr-medium" /></a></p>
<p align="left">Closeup of the breadboard adapter.  In addition to the socketed CPLD, it has a JTAG 2&#215;5 programming header, a 3.3V regulator, three capacitors, and a resistor.</p>
<p align="left">Note on clock rise times:  CPLDs are capable of running very fast clock rates, 100MHz+.  In my example circuit shown above, I found the counter was behaving anomalously, skipping states.  The root of the problem is related to rise time of the clock pulses.   Logic can be 0 or 1, but the <em>rise time</em> is how long it takes for a transition to occur.  Imagine a horse race and everybody is on the starting line ready to go&#8230; the flag goes up, but very slowly.   Will everybody start at exactly the same moment?  This is an analogy for clocking the CPLD.  I found that clock sources that worked fine with 74HC TTL and CD4000 CMOS often do not have a quick enough rise time to clock this CPLD without glitching.  The clock generator built in to my old-school Knight breadboard has a 150 nanosecond rise time, which is too slow.  Experimenting, I found that 10 nanoseconds appears to be fast enough for reliable clocking.  A 74HC244 buffer IC works well for conditioning real-world inputs.</p>
]]></content:encoded>
			<wfw:commentRss>http://ericarcher.net/2010/08/21/cpld-hello-world/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Sound Camera: NYC Night Drive</title>
		<link>http://ericarcher.net/2010/05/20/sound-camera-nyc-night-drive/</link>
		<comments>http://ericarcher.net/2010/05/20/sound-camera-nyc-night-drive/#comments</comments>
		<pubDate>Thu, 20 May 2010 23:09:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[devices]]></category>

		<category><![CDATA[travel]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ericarcher.net/2010/05/20/sound-camera-nyc-night-drive/</guid>
		<description><![CDATA[



a short documentary demonstrating an experimental field recording  technique.  lets roll from new jersey to brooklyn and listen to hidden  sounds outside the window.  please pardon the shaky video.
more sound camera recordings
]]></description>
			<content:encoded><![CDATA[<p align="center"><object width="400" height="225">
<param name="allowfullscreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11885641&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1"></param><embed src="http://vimeo.com/moogaloop.swf?clip_id=11885641&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object></p>
<p align="left">a short documentary demonstrating an experimental field recording  technique.  lets roll from new jersey to brooklyn and listen to hidden  sounds outside the window.  please pardon the shaky video.</p>
<p align="left"><a href="http://ericarcher.net/devices/sound-cameras/sound-camera-recordings/">more sound camera recordings</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ericarcher.net/2010/05/20/sound-camera-nyc-night-drive/feed/</wfw:commentRss>
		</item>
		<item>
		<title>meditation #5</title>
		<link>http://ericarcher.net/2010/05/09/meditation-5/</link>
		<comments>http://ericarcher.net/2010/05/09/meditation-5/#comments</comments>
		<pubDate>Sun, 09 May 2010 06:03:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ericarcher.net/2010/05/09/meditation-5/</guid>
		<description><![CDATA[



]]></description>
			<content:encoded><![CDATA[<p align="center"><object width="400" height="300">
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=11588168&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=11588168&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="300"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ericarcher.net/2010/05/09/meditation-5/feed/</wfw:commentRss>
		</item>
		<item>
		<title>post-SXSW post</title>
		<link>http://ericarcher.net/2010/03/22/post-sxsw/</link>
		<comments>http://ericarcher.net/2010/03/22/post-sxsw/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 19:38:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ericarcher.net/2010/03/22/post-sxsw/</guid>
		<description><![CDATA[I experienced so much good music in Austin the last couple of weeks.  My favorites were all from the classical / experimental / electronic realms.   Plus I got to meet a number of really interesting people.
personal faves

So Percussion performing Steve Reich&#8217;s Mallet Quartet, with Mr. Reich in attendance for a post-concert Q&#38;A.
MURAL creative improv by [...]]]></description>
			<content:encoded><![CDATA[<p align="left">I experienced so much good music in Austin the last couple of weeks.  My favorites were all from the classical / experimental / electronic realms.   Plus I got to meet a number of really interesting people.</p>
<p>personal faves</p>
<ul>
<li><a href="http://www.sopercussion.com/">So Percussion</a> performing Steve Reich&#8217;s Mallet Quartet, with Mr. Reich in attendance for a post-concert Q&amp;A.</li>
<li><a href="http://www.ingarzach.com/news.htm" target="_blank">MURAL</a> creative improv by Norwegians Ingar Zach and Kim Myhr, with Jim Denley (Australia) on woodwinds.</li>
<li><a href="http://www.ellenfullman.com/Photos.html" target="_blank">Ellen Fullman&#8217;s Long String Instrument</a> in the historic Seaholm Power Plant, with Travis Weller and Nick Hennies on the &#8216;box bows&#8217;.  I am kicking myself for not bringing a camera to this rarely-opened space.  The audience was seated in the turbine hall, beneath an enormous overhead crane running the length of the hall, its ominous, rusty 75-ton hoist hook dangling above our heads, and the concrete floor interrupted by huge eccentrically shaped holes once occupied by turbines, offering a spooky view downward thru several levels of subfloor to pools of dark water.</li>
<li><a href="http://www.arcattack.com/" target="_blank">Arc Attack.</a>  These guys keep adding more crazy to the show, the coils are 6 feet tall now and the MC donned a full metal mesh bodysuit and danced between the coils, catching 500kV bolts of lightning modulated to play synth leads instead of thunder.  <a href="http://www.resonancestudio.com/craigsblog/?page_id=2" target="_blank">Craig Newswanger</a>&#8217;s robotic drum kit really jams.</li>
<li><a href="http://www.amoda.org/showcase/showcase.php?EventID=87" target="_blank">AMODA laptop battle</a>  3-minute sets judged by a panel and audience response in a 3-round elimination format.  I really liked the sounds from <a href="http://www.myspace.com/ikipr" target="_blank">Ikipr</a>, <a href="http://www.myspace.com/themysterioush" target="_blank">Mysterious H</a>, and <a href="http://www.myspace.com/cygnusmusic" target="_blank">Cygnus</a>.  <a href="http://www.myspace.com/blixaboy" target="_blank">Blixaboy</a> won the judges and crowd with a funky approach, then shifted into minimal mode when encore time arrived.  Talking with some of the competitors afterward, it seems like you need to bring enough pieces prepared in advance to take you thru the final round.  One artist admitted to just playing a .wav file after making it thru several rounds.  Its the kind of thing laptop critics will jump on, but in fact it turns out that the audience isn&#8217;t oblivious to the difference between merely pressing play and a performance with live elements.</li>
<li><a href="http://www.thehighball.com/events/datapop-3-0/" target="_blank">DataPop 3.0</a> international chiptune showcase&#8230;  crowd surfing to nintendo music, who would have thunk.  My man <a href="http://photoblog.statesman.com/wp-content/uploads/2010/03/jwj-sxsw-00876b.jpg" target="_blank">Mysterious H made the front cover of the newspaper</a></li>
<li><a href="http://www.myspace.com/survive2009" target="_blank">SURVIVE</a> orchestrated synthadelic slowjams&#8230; must see Austin 4-piece</li>
<li><a href="http://www.myspace.com/tensexxx" target="_blank">TENSE</a> EBM from Houston TX&#8230;  awesome live show at Awthumfetht V, everybody in the place was up and moving</li>
<li><a href="http://www.youtube.com/watch?v=U1TZ0gMGmVU" target="_blank">Loud Objects</a> &#8230; unclassifiable 1-bit noise art circuits assembled live with hot solder.  It was cool seeing Kunal and Tristan in Austin&#8230; we&#8217;ll see you soon at <a href="http://www.bentfestival.org" target="_blank">Bent Festival</a></li>
</ul>
<p align="left"><a href="http://www.myspace.com/operationplaymate" target="_blank">Bodytronix</a> (me + erich) played 4 gigs.  Here&#8217;s video.  You can hear the <font color="#ff6600">SP0256 vocal synthesizer</font> starting at 1:05&#8230; The audio is a blend of a board tape (cassette) and the on-camera mic.  Our friends <a href="http://www.arawa.fm/" target="_blank">Tommyboy</a> and <a href="http://www.amoda.org/artists/artist.php?ArtistID=711" target="_blank">VidKidz</a> rocked on video projections.</p>
<p align="center"><object width="400" height="225">
<param name="allowfullscreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param>
<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=10293889&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1"></param><embed src="http://vimeo.com/moogaloop.swf?clip_id=10293889&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ericarcher.net/2010/03/22/post-sxsw/feed/</wfw:commentRss>
		</item>
		<item>
		<title>vocal synth&#8230; appearing soon + interview</title>
		<link>http://ericarcher.net/2010/03/08/vocal-synth-appearing-soon/</link>
		<comments>http://ericarcher.net/2010/03/08/vocal-synth-appearing-soon/#comments</comments>
		<pubDate>Mon, 08 Mar 2010 06:15:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[devices]]></category>

		<category><![CDATA[performances]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ericarcher.net/2010/03/08/vocal-synth-appearing-soon/</guid>
		<description><![CDATA[&#8230; just finished wiring up a two-voice vocal synthesizer with a pair of SP0256-AL2 narrator speech chips, dual 4-step pitch sequencers, glide, LFO, speech data storage on EPROM, trigger inputs for word and pitch change, voice crossfader, variable speech rate.   Here&#8217;s a preliminary video with a harmony and some phoneme sounds.  It will sing in [...]]]></description>
			<content:encoded><![CDATA[<p align="left">&#8230; just finished wiring up a <a href="http://ericarcher.net/devices/vocal-synthesizer">two-voice vocal synthesizer with a pair of SP0256-AL2 narrator speech chips</a>, dual 4-step pitch sequencers, glide, LFO, speech data storage on EPROM, trigger inputs for word and pitch change, voice crossfader, variable speech rate.   Here&#8217;s a preliminary video with a harmony and some phoneme sounds.  It will sing in English soon.  But we have to think of some lyrics and burn them on the EPROM first&#8230; this is based on an older circuit of mine, <a href="http://ericarcher.net/devices/speech-synthesizer/">analog controlled speech synthesizer</a>.</p>
<p> PS I just updated that page with schematics and perfboard layout, in case you have a lonely SP0256-AL2 waiting for a chance to jabber.</p>
<p align="center"><object type="application/x-shockwave-flash" data="about:blank" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="220">
<param name="flashvars" value="intl_lang=en-us&amp;photo_secret=9d76914a3d&amp;photo_id=4415461397"></param>
<param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=71377"></param>
<param name="bgcolor" value="#000000"></param>
<param name="allowFullScreen" value="true"></param><embed src="http://www.flickr.com/apps/video/stewart.swf?v=71377" type="application/x-shockwave-flash" bgcolor="#000000" allowfullscreen="true" flashvars="intl_lang=en-us&amp;photo_secret=9d76914a3d&amp;photo_id=4415461397" width="400" height="220"></embed></object></p>
<p align="left">The vocal synth will debut at SXSW Interactive on 3/13 when <a href="http://www.myspace.com/operationplaymate" target="_blank">Bodytronix</a> plays Dorkbot at Brush Square Park.  We&#8217;re playing a bunch more gigs coming up so maybe we will see you.</p>
<ul>
<li>Sat. 3/13 6PM - <a href="http://dorkbot.org/dorkbotaustin/2010/02/dorkbot-23-sxsw-interactive-2010/" target="_blank">Dorkbot 23 at SXSW Interactive</a> (RSVP event)&#8230; located in Brush Square Park right outside the Austin convention center.</li>
<li>Tues 3/16 8:30 PM - <a href="http://awthum.com/awthumfetht-2010/" target="_blank">AWTHUMFETHT 2010</a> at the Independent (located in 501 Studios)</li>
<li>Tues 3/16 11:00 PM - Club 1808 (1808 E. 12th St, Austin) w/ Reverse X-Rays, MANY MORE!!</li>
<li>Sat 3/20 3:00 PM - <a href="http://handmademusic.noisepages.com/austin-venue/" target="_blank">Handmade Music Austin #6</a> at Salvage Vanguard Theatre</li>
<li>April 22-24th (TBA) - <a href="http://www.bentfestival.org" target="_blank">Bent Festival &#8216;10</a> (The Tank NYC)</li>
</ul>
<p align="left">I&#8217;m working on a new DIY project for folks to build at Handmade Music Austin 6.  Tune In Tokyo started out as an experiment with the 74HC594 chip, and it turned out sounding crazy.  YES, I&#8217;m aware of the of nipple reference. XD XD XD</p>
<p align="center"><a href="http://ericarcher.net/wp-content/uploads/2010/03/tune-in-tokyo-01.mp3" title="Tune In Tokyo">Tune In Tokyo</a></p>
<p align="center"> <img src="http://ericarcher.net/wp-content/uploads/2010/03/tuneintokyo-board.jpg" alt="TITboard" /></p>
<p align="left">And finally . . .</p>
<p align="left"><a href="http://www.sailormouth.org/" target="_blank">Sailormouth</a>, another Texas circuit maestro, interviewed me recently and you can <a href="http://www.getlofi.com/?p=2555" target="_blank">read it here on GetLoFi.com</a>.  Sailormouth&#8217;s work covers a good combination of circuit bending, original circuitry, mods, and microcontrollers.  Thanks for the interview my friend.<a href="http://www.getlofi.com/?p=2555" target="_blank"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ericarcher.net/2010/03/08/vocal-synth-appearing-soon/feed/</wfw:commentRss>
<enclosure url="http://ericarcher.net/wp-content/uploads/2010/03/tune-in-tokyo-01.mp3" length="520358" type="audio/mpeg" />
		</item>
		<item>
		<title>EDRUPT - My Speakers</title>
		<link>http://ericarcher.net/2010/02/08/edrupt-my-speakers/</link>
		<comments>http://ericarcher.net/2010/02/08/edrupt-my-speakers/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 08:54:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[music]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ericarcher.net/2010/02/08/edrupt-my-speakers/</guid>
		<description><![CDATA[Special web release for an electro track by me.
EDRUPT - My Speakers




&#160;
The story of EDRUPT is an esoteric mystery of NASA&#8217;s Apollo moon missions.  Did you know that the Apollo Guidance Computer (AGC) was the first computer built with integrated circuits a.k.a. chips?  Containing 4,100 chips strung together by hand with wire wrap and solidified [...]]]></description>
			<content:encoded><![CDATA[<p>Special web release for an electro track by me.</p>
<p align="center"><a href="http://ericarcher.net/wp-content/uploads/2010/02/edrupt-my-speakers.mp3" title="EDRUPT - My Speakers">EDRUPT - My Speakers</a></p>
<p align="center"><object width="425" height="344">
<param name="movie" value="http://www.youtube.com/v/AXbm4wSmsbw&amp;hl=en_US&amp;fs=1&amp;rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/AXbm4wSmsbw&amp;hl=en_US&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p align="center">&nbsp;</p>
<p align="left">The story of EDRUPT is an esoteric mystery of NASA&#8217;s Apollo moon missions.  Did you know that the Apollo Guidance Computer (AGC) was the first computer built with integrated circuits a.k.a. chips?  Containing 4,100 chips strung together by hand with wire wrap and solidified inside clear epoxy, the AGC was used in all of NASA&#8217;s manned moon missions.  Details of its operation have been disclosed, but one of the computer&#8217;s designers included a strange and poorly documented machine instruction called EDRUPT.  It was used only once in the mission, during the phase when the Lunar Module made its descent toward the moon&#8217;s surface under digital control.  Retro computing enthusiasts can simulate the AGC&#8217;s Luminary 131 software on desktop machines but its found that the system breaks unless EDRUPT is removed from the code.  One understanding of EDRUPT is that it instructed the computer to send data to an unknown destination elsewhere in the spacecraft.  But why is EDRUPT a missing piece of the puzzle?  What was contained in the data it sent?  And&#8230; what or <em>who</em> was the intended recipient?</p>
]]></content:encoded>
			<wfw:commentRss>http://ericarcher.net/2010/02/08/edrupt-my-speakers/feed/</wfw:commentRss>
<enclosure url="http://ericarcher.net/wp-content/uploads/2010/02/edrupt-my-speakers.mp3" length="14043427" type="audio/mpeg" />
		</item>
		<item>
		<title>E-Squared @ Club 1808 video</title>
		<link>http://ericarcher.net/2010/01/25/e-squared-club-1808-video/</link>
		<comments>http://ericarcher.net/2010/01/25/e-squared-club-1808-video/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 10:57:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[bent festival]]></category>

		<category><![CDATA[performances]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ericarcher.net/2010/01/25/e-squared-club-1808-video/</guid>
		<description><![CDATA[We&#8217;re playing Bent Festival 2010 in NYC on April 23-24th, and we&#8217;d love to play more shows while we&#8217;re on the road between TX and NY - so hit us up if you need more live DIY electro in your town! 
When we played Club 1808 we stripped down the setup to the essentials.  I [...]]]></description>
			<content:encoded><![CDATA[<p><span>We&#8217;re playing B<a href="http://www.bentfestival.org/" target="_blank">ent Festival 2010</a> in NYC on April 23-24th, and we&#8217;d love to play more shows while we&#8217;re on the road between TX and NY - so <a href="http://www.myspace.com/operationplaymate" target="_blank">hit us up</a> if you need more live DIY electro in your town! </span></p>
<p><span>When we played Club 1808 we stripped down the setup to the essentials.  I played</span> <span><a href="http://ericarcher.net/devices/big-box-o-techno/">BBoT</a>, <a href="http://ericarcher.net/devices/another-box-o-techno/">ABoT</a>, <a href="http://ericarcher.net/devices/mini-space-rockers/">mini space rockers</a>, <a href="http://ericarcher.net/devices/mk3">andromeda Mk-3</a>, <a href="http://ericarcher.net/devices/digital-delay-mod/">modified ibanez DM-1000</a> looper.  erich played x0xb0x, TX606, <a href="http://ericarcher.net/devices/clap-raca/">clap-raca</a>, casio rapman.</span></p>
<p><span> thx for jammin with us: owen, ethan, shane, sweet DJG, lisa, gene, no mas bodas, weird weeds, reverse x rays, club 1808</span></p>
<p align="center"><object width="480" height="295">
<param name="movie" value="http://www.youtube.com/v/V9Ylv5g21RE&#038;hl=en_US&#038;fs=1&#038;rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/V9Ylv5g21RE&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
<p align="center"> <img src="http://ericarcher.net/wp-content/uploads/2010/01/jan23-v2-475px.jpg" alt="jan23flyer" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ericarcher.net/2010/01/25/e-squared-club-1808-video/feed/</wfw:commentRss>
		</item>
		<item>
		<title>new videos</title>
		<link>http://ericarcher.net/2009/12/27/new-videos/</link>
		<comments>http://ericarcher.net/2009/12/27/new-videos/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 07:27:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[devices]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://ericarcher.net/2009/12/27/new-videos/</guid>
		<description><![CDATA[last videos of the decade?!
heres to a very analog 2010.








]]></description>
			<content:encoded><![CDATA[<p align="center">last videos of the decade?!</p>
<p align="center">heres to a very analog 2010.</p>
<p align="center"><object width="480" height="295">
<param name="movie" value="http://www.youtube.com/v/OGJSqRe7BO0&#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/OGJSqRe7BO0&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
<p align="center"><object width="400" height="225">
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=8401175&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=8401175&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ericarcher.net/2009/12/27/new-videos/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Handmade Music Austin #3 Sunday Dec 20th</title>
		<link>http://ericarcher.net/2009/12/17/handmade-music-austin-3-sunday-dec-20th/</link>
		<comments>http://ericarcher.net/2009/12/17/handmade-music-austin-3-sunday-dec-20th/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 03:43:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[kits]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://ericarcher.net/2009/12/17/handmade-music-austin-3-sunday-dec-20th/</guid>
		<description><![CDATA[If you&#8217;re not registered yet its probably full but come on down anyway because Mini Space Rockers kits are first come first served (30 seats available), starting at 4PM.  Our Upper Division project this month is Andromeda Mk-4  analog bass drums.  And at 8:30 we&#8217;ll move in to the gallery and see what happens when [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re not registered yet its probably full but come on down anyway because Mini Space Rockers kits are first come first served (30 seats available), starting at 4PM.  Our Upper Division project this month is <a href="http://ericarcher.net/devices/mk4">Andromeda Mk-4</a>  analog bass drums.  And at 8:30 we&#8217;ll move in to the gallery and see what happens when we plug everything in.  We&#8217;ve created an interactive installation with wireless synchronization for everybody.  PS if you have an <a href="http://4mspedals.com/autobass.php" target="_blank">Autonomous Bassline Generator</a>, bring it b/c it sounds great with the Mk-4.  Check out the videos&#8230;</p>
<p align="center"><a href="http://handmademusic.noisepages.com/austin-venue/" target="_blank">Handmade Music Austin #3</a></p>
<p align="center">Sunday, December 20 &#8216;09</p>
<p align="center">4PM – 5:30 – Beginner’s Workshop<br />
6PM – 8 -Upper Division instrument building class<br />
8:30 – ? Jam and featured performance</p>
<p align="center">Salvage Vanguard Theatre<br />
2803 Manor Road<br />
Austin, Texas 78722</p>
<p align="center">&nbsp;</p>
<p align="center"><object width="480" height="295">
<param name="movie" value="http://www.youtube.com/v/WHEZ6Qtun3s&#038;hl=en_US&#038;fs=1&#038;rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/WHEZ6Qtun3s&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
<p align="center">&nbsp;</p>
<p align="center"><object width="400" height="225">
<param name="allowfullscreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=8235125&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=8235125&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="225"></embed></object></p>
<p align="left">Snare is synthesized with Andromeda <a href="http://ericarcher.net/devices/mk1">Mk-1</a> damped sine wave + <a href="http://ericarcher.net/devices/mk2">Mk-2</a> filtered noise burst. The damped sine waves simulate the top head of the snare, and the Mk-2 simulates the bottom drum head and snare wires. The sharp percussion sound is from an experimental all-transistor circuit, on the left. Its triggered by a prototype 2-button loop sequencer using PIC 16F684, code by <a href="http://woosteraudio.com" target="_blank">Wooster Audio</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ericarcher.net/2009/12/17/handmade-music-austin-3-sunday-dec-20th/feed/</wfw:commentRss>
		</item>
		<item>
		<title>interactive installation + HMA#2 video</title>
		<link>http://ericarcher.net/2009/12/07/interactive-installation-hma2-video/</link>
		<comments>http://ericarcher.net/2009/12/07/interactive-installation-hma2-video/#comments</comments>
		<pubDate>Mon, 07 Dec 2009 06:55:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[video]]></category>

		<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://ericarcher.net/2009/12/07/interactive-installation-hma2-video/</guid>
		<description><![CDATA[I worked with Dann Green of 4ms Pedals to design a unique beat-making music installation for the Smirnoff &#8220;Be There&#8221; party in Austin on Saturday Dec. 5th.
Its a cluster of four interactive electronic music stations where you can play with Andromeda Space Rockers, the Autonomous Bassline Generator, and MIDI-IR.  Each station has 4 space [...]]]></description>
			<content:encoded><![CDATA[<p>I worked with Dann Green of <a href="http://4mspedals.com" target="_blank">4ms Pedals</a> to design a unique beat-making music installation for the <a href="http://do512.wordpress.com/2009/12/01/smirnoff-presents-be-there-feat-dj-peanut-butter-wolf-this-sat-125-secret-location-tba/" target="_blank">Smirnoff &#8220;Be There&#8221; party in Austin</a> on Saturday Dec. 5th.</p>
<p>Its a cluster of four interactive electronic music stations where you can play with <a href="http://www.youtube.com/watch?v=RK5pHJsItzc&amp;feature=player_embedded" target="_blank">Andromeda Space Rockers</a>, the <a href="http://4mspedals.com/autobass.php" target="_blank">Autonomous Bassline Generator</a>, and <a href="http://woosteraudio.com" target="_blank">MIDI-IR</a>.  Each station has 4 space rockers, a mixer, four flexible LEDs from our friends at <a href="http://www.bleeplabs.com" target="_blank">Bleep Labs</a>, and MIDI-IR to keep everybody in sync.</p>
<p><object width="480" height="295">
<param name="movie" value="http://www.youtube.com/v/9bwuN24MbCg&#038;hl=en_US&#038;fs=1&#038;rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/9bwuN24MbCg&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
<p>Here&#8217;s video from Handmade Music Austin #2.  It was awesome meeting everybody who participated.  </p>
<p><object width="480" height="295">
<param name="movie" value="http://www.youtube.com/v/wERWuvYvvf4&#038;hl=en_US&#038;fs=1&#038;rel=0"></param>
<param name="allowFullScreen" value="true"></param>
<param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/wERWuvYvvf4&#038;hl=en_US&#038;fs=1&#038;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="295"></embed></object></p>
<p><a href="http://handmademusic.noisepages.com" target="_blank">HMA3 is coming soon</a>.  This time we&#8217;ll be building mini space rockers (intro) and Andromeda Mk-4 analog bass drums (advanced).</p>
]]></content:encoded>
			<wfw:commentRss>http://ericarcher.net/2009/12/07/interactive-installation-hma2-video/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
