<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Bocho's Blog</title>
	<atom:link href="http://bochovj.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bochovj.wordpress.com</link>
	<description>VJing and hacking...</description>
	<lastBuildDate>Mon, 19 Dec 2011 14:39:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bochovj.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Bocho's Blog</title>
		<link>http://bochovj.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bochovj.wordpress.com/osd.xml" title="Bocho&#039;s Blog" />
	<atom:link rel='hub' href='http://bochovj.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Arduino to MIDI implemented !</title>
		<link>http://bochovj.wordpress.com/2011/12/08/arduino-to-midi-implemented/</link>
		<comments>http://bochovj.wordpress.com/2011/12/08/arduino-to-midi-implemented/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 17:55:41 +0000</pubDate>
		<dc:creator>bochovj</dc:creator>
				<category><![CDATA[Arduino]]></category>
		<category><![CDATA[MIDI]]></category>
		<category><![CDATA[VJing]]></category>

		<guid isPermaLink="false">http://bochovj.wordpress.com/?p=229</guid>
		<description><![CDATA[Hi, I have finally reached one of the objectives I have had for a long time since I have started this blog: converting physical signals captured by Arduino into MIDI messages that I could use in some program on my laptop (like Resolume for VJing). First of all I would like to tell you what [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=229&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I have finally reached one of the objectives I have had for a long time since I have started this blog: converting physical signals captured by Arduino into MIDI messages that I could use in some program on my laptop (like <a href="http://www.resolume.com/" title="Resolume" target="_blank">Resolume</a> for VJing).</p>
<p>First of all I would like to tell you what <strong>DID NOT</strong> work for me.</p>
<p>I have seen on many blogs that what usually people do is a operating system-level trick: they install a serial to midi driver that reads the serial port and generates midi messages as it was a midi device connected to the system.<br />
This is the way it is actually done by many midi devices manifacturers, and actually the trick just consists in downloading and installing one of their drivers.<br />
The most famous one is the <a href="http://search.roland.com/en_all/search.x?q=Roland+Serial+MIDI+driver&amp;ie=UTF-8&amp;page=1" title="Roland serial to midi driver" target="_blank">Roland serial midi driver</a>, which is seems not available on some operating systems (e.g. Windows 7). A much more interesting driver is offered by Yamaha on <a href="http://download.yamaha.com/usb_midi/index.html" title="Yamaha USB driver page" target="_blank">this site</a>, but I have tried it and it wouldn&#8217;t install either.</p>
<p>So in the end I thought: why don&#8217;t I just create a Java application myself that reads the serial port and routes the MIDI messages to some midi device?</p>
<p>The first problem was finding a reasonable solution for reading serial ports in Java.<br />
You would think &#8220;hey! this is pre-history of computer science!&#8221;, or at least this is what I thought, but being Java anti-low-level-stuff it doesn&#8217;t have a &#8220;normal&#8221; way for doing it.<br />
There is a standard API, the <a href="http://www.oracle.com/technetwork/java/index-jsp-141752.html" title="Java Communications API" target="_blank">Java Communications API</a>, that was once created by SUN and then discontinued. Actually the standard implementation, which used to work also on Windows, is now only available for some Unixes. Fortunately some guys created the <a href="http://rxtx.qbang.org/wiki/index.php/Main_Page" title="RXTX library" target="_blank">RTXT library</a> which is an alternative implementation of the same API, and which offers support for all operating systems. So I have adopted this last one and made it sniff my Arduino messages.</p>
<p>Then I had to implement a protocol to send midi messages from Arduino. I could have used the MIDI itself, but it was then difficult to separate messages one from another as there is no standard separator, so I just made an extremely simple protocol myself.</p>
<p>The protocol follows these rules:</p>
<ul>
<li>one message per line (i.e. packets are separated by a carriage return)</li>
<li>Control changes are represented as: cc ch 10 ctrl 12 val 130 (where ch stands for channel, ctrl stands for control and val for value)</li>
<li>Notes ON are represented as: non ch 10 key 12 vel 120</li>
<li>Notes OFF are represented as: noff ch 10 key 14 vel 120</li>
<li>Aftertouches are represented as: at ch 10 key 14 tch 100</li>
</ul>
<p>Then I created an utility that interprets these packets and sends them back to some MIDI interface you may have on your computer.<br />
If the objective is to use these messages in some program, like in my case, then you would also need some MIDI &#8220;router&#8221; that receives messages and sends them back to another interface. For this objective I have used the <a href="http://nerds.de/en/loopbe1.html" title="LoopBe1" target="_blank">LoopBe1</a> free tool, which works on my Windows 7 64 bits (i.e. it is updated). For other operating systems I am sure there are similar alternatives.</p>
<p>The result is some code for both Java and Arduino.</p>
<p>Let&#8217;s see the example for Arduino first:</p>
<p><code><br />
void setup() {<br />
  Serial.begin(9600);<br />
}</p>
<p>void loop() {<br />
  float sensorValue = analogRead(0);<br />
  int intValue = (sensorValue / 1023) * 127;<br />
  String value = intValue;<br />
  Serial.println("cc ch 10 ctrl 12 val "+value);<br />
  delay(10);<br />
}<br />
</code></p>
<p>As you may see, it is just a simple example that reads the value of pin 0 and sends it as a control change on channel 10, control number 12. The value is normalised to 0-127 (as the MIDI standard requires) and then put into the string.</p>
<p>More interesting may be the Java code, which can be seen <a href="http://code.google.com/p/bochovj/source/browse/#svn%2Ftrunk%2FJava%2FMidiManager%2Fsrc%2FbochoVJ%2Fmidi%2Fserial" title="BochoVJ repository" target="_blank">here</a>.</p>
<p>I have also resumed the functionalities in the <a href="http://code.google.com/p/bochovj/wiki/MidiManager" title="SerialToMidi wiki page" target="_blank">wiki page</a>.</p>
<p>In order to make it simple to use I have created a GUI for it. It lets you choose the midi output, the serial port and then it has just a start/stop button to activate/deactivate it.</p>

<a href='http://bochovj.wordpress.com/2011/12/08/arduino-to-midi-implemented/serial-port-select/' title='serial port select'><img data-attachment-id='235' data-orig-size='278,139' data-liked='0'width="150" height="75" src="http://bochovj.files.wordpress.com/2011/12/serial-port-select.jpg?w=150&#038;h=75" class="attachment-thumbnail" alt="serial port select" title="serial port select" /></a>
<a href='http://bochovj.wordpress.com/2011/12/08/arduino-to-midi-implemented/midi-out-select/' title='midi out select'><img data-attachment-id='236' data-orig-size='470,202' data-liked='0'width="150" height="64" src="http://bochovj.files.wordpress.com/2011/12/midi-out-select.jpg?w=150&#038;h=64" class="attachment-thumbnail" alt="midi out select" title="midi out select" /></a>
<a href='http://bochovj.wordpress.com/2011/12/08/arduino-to-midi-implemented/serial-to-midi/' title='serial to midi'><img data-attachment-id='237' data-orig-size='193,82' data-liked='0'width="150" height="63" src="http://bochovj.files.wordpress.com/2011/12/serial-to-midi.jpg?w=150&#038;h=63" class="attachment-thumbnail" alt="serial to midi" title="serial to midi" /></a>

<p>In order to work, the proper native library of RTXT must be put into the Libraries folder when compiling it from Eclipse (see the original instructions <a href="http://rxtx.qbang.org/wiki/index.php/Installation" title="RTXT installation" target="_blank">here</a>). The current native library is for Windows 64 bits.<br />
If you have any problem don&#8217;t hesitate to contact me.</p>
<p>So, the proof of the concept is completed, now there are thousands of ideas that come to my mind on how to improve/generalise this.</p>
<p>Here you can see a demonstration that I am not lying:</p>
<div class='embed-vimeo' style='text-align:center;'><iframe src='http://player.vimeo.com/video/33354296' width='400' height='300' frameborder='0'></iframe></div>
<p>Any comment is welcome !</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bochovj.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bochovj.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bochovj.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bochovj.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bochovj.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bochovj.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bochovj.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bochovj.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bochovj.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bochovj.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bochovj.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bochovj.wordpress.com/229/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bochovj.wordpress.com/229/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bochovj.wordpress.com/229/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=229&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bochovj.wordpress.com/2011/12/08/arduino-to-midi-implemented/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b29f6a5b7d6c9c937621acc296d3ad7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bochovj</media:title>
		</media:content>

		<media:content url="http://bochovj.files.wordpress.com/2011/12/serial-port-select.jpg?w=150" medium="image">
			<media:title type="html">serial port select</media:title>
		</media:content>

		<media:content url="http://bochovj.files.wordpress.com/2011/12/midi-out-select.jpg?w=150" medium="image">
			<media:title type="html">midi out select</media:title>
		</media:content>

		<media:content url="http://bochovj.files.wordpress.com/2011/12/serial-to-midi.jpg?w=150" medium="image">
			<media:title type="html">serial to midi</media:title>
		</media:content>
	</item>
		<item>
		<title>Astonishing video mapping + synthesis + dance</title>
		<link>http://bochovj.wordpress.com/2011/11/19/astonishing-video-mapping-synthesis-dance/</link>
		<comments>http://bochovj.wordpress.com/2011/11/19/astonishing-video-mapping-synthesis-dance/#comments</comments>
		<pubDate>Sat, 19 Nov 2011 14:39:04 +0000</pubDate>
		<dc:creator>bochovj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[VJing]]></category>

		<guid isPermaLink="false">http://bochovj.wordpress.com/?p=225</guid>
		<description><![CDATA[impressive.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=225&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='450' height='284' src='http://www.youtube.com/embed/-wVq41Bi2yE?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1&amp;wmode=transparent' frameborder='0'></iframe></span>
<p>impressive.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bochovj.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bochovj.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bochovj.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bochovj.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bochovj.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bochovj.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bochovj.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bochovj.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bochovj.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bochovj.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bochovj.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bochovj.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bochovj.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bochovj.wordpress.com/225/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=225&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bochovj.wordpress.com/2011/11/19/astonishing-video-mapping-synthesis-dance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b29f6a5b7d6c9c937621acc296d3ad7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bochovj</media:title>
		</media:content>
	</item>
		<item>
		<title>First video of the album: Lluvia</title>
		<link>http://bochovj.wordpress.com/2011/11/07/first-video-of-the-album-lluvia/</link>
		<comments>http://bochovj.wordpress.com/2011/11/07/first-video-of-the-album-lluvia/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 09:00:34 +0000</pubDate>
		<dc:creator>bochovj</dc:creator>
				<category><![CDATA[VJing]]></category>

		<guid isPermaLink="false">http://bochovj.wordpress.com/?p=216</guid>
		<description><![CDATA[This is the official video of the song Lluvia (rain) of the group Nöno. You can listen to the entire album here. I created it using Resolume, which, unfortunately, drops many frames while recording and produces a stream which is not fluid and really difficult to synchronize with the audio The video as well as [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=216&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://player.vimeo.com/video/31697736" width="320" height="240" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe></p>
<p>This is the official video of the song Lluvia (rain) of the group <a href="http://www.myspace.com/nonotheband">Nöno</a>.<br />
You can listen to the entire album <a href="http://www.jamendo.com/en/album/100484" title="Juguete album">here</a>. </p>
<p>I created it using Resolume, which, unfortunately, drops many frames while recording and produces a stream which is not fluid and really difficult to synchronize with the audio</p>
<p>The video as well as the song are distributed under the creative commons license: <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/" title="CC-BY-NC-SA">Attribution-NonCommercial-ShareAlike 2.5 Generic</a></p>
<p>This video is a collection of samples of videos downloaded from the net. All the source material is public domain or creative commons.<br />
I sincerely thank all the contributors who make their videos available for modification and artistic use.<br />
The list of sources is the following:</p>
<p>source: http://www.archive.org/details/Rain_4<br />
author: Josh Leo<br />
license: NA</p>
<p>source: http://www.archive.org/details/CEPriceAutumnSkies<br />
author: C. E. Price<br />
license: Creative Commons license: Attribution-NonCommercial-ShareAlike</p>
<p>source: http://www.archive.org/details/AutumnImpressions<br />
author: Raff Fluri<br />
license: Creative Commons license: Attribution-NonCommercial-ShareAlike 2.5 </p>
<p>source: http://www.archive.org/details/IntheBeg1937<br />
author: U.S. Department of Agriculture, Bureau of Dairy Industry, Extension Service, Division of Motion Pictures<br />
license: Public Domain</p>
<p>source: http://www.archive.org/details/CapeCodMarshClouds<br />
author: Tracey Jaquith<br />
license: Public Domain</p>
<p>source: http://www.archive.org/details/IMB_SF_R32_C10<br />
author: Ivan Bridgewater<br />
license: Creative commons Attribution 3.0 Unported (CC BY 3.0)</p>
<p>source: http://www.archive.org/details/CEP366, http://www.archive.org/details/CEP464, http://www.archive.org/details/CEP453, http://www.archive.org/details/CEP_00_008_WS, http://www.archive.org/details/CEP_00_078_WS<br />
author: C. E. Price<br />
license: Public Domain</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bochovj.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bochovj.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bochovj.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bochovj.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bochovj.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bochovj.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bochovj.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bochovj.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bochovj.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bochovj.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bochovj.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bochovj.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bochovj.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bochovj.wordpress.com/216/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=216&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bochovj.wordpress.com/2011/11/07/first-video-of-the-album-lluvia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b29f6a5b7d6c9c937621acc296d3ad7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bochovj</media:title>
		</media:content>
	</item>
		<item>
		<title>Nöno&#8217;s first album, Juguetes, published online!</title>
		<link>http://bochovj.wordpress.com/2011/10/19/nonos-first-album-juguetes-published-online/</link>
		<comments>http://bochovj.wordpress.com/2011/10/19/nonos-first-album-juguetes-published-online/#comments</comments>
		<pubDate>Wed, 19 Oct 2011 20:09:34 +0000</pubDate>
		<dc:creator>bochovj</dc:creator>
				<category><![CDATA[VJing]]></category>

		<guid isPermaLink="false">http://bochovj.wordpress.com/?p=212</guid>
		<description><![CDATA[The group I was VJing before it broke up, Nöno, published its first (and sadly last) album online. http://www.jamendo.com/en/album/100484 All the music is free (creative commons). Now I have to create the official videos and publish them ASAP! &#160; Stay tuned&#8230; &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=212&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The group I was VJing before it broke up, <a title="" href="http://www.jamendo.com/en/artist/Nono_(3)">Nöno</a>, published its first (and sadly last) album online.</p>
<p><a href="http://www.jamendo.com/en/album/100484">http://www.jamendo.com/en/album/100484</a></p>
<p>All the music is free (creative commons).</p>
<p>Now I have to create the official videos and publish them ASAP!</p>
<p>&nbsp;</p>
<p>Stay tuned&#8230;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bochovj.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bochovj.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bochovj.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bochovj.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bochovj.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bochovj.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bochovj.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bochovj.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bochovj.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bochovj.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bochovj.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bochovj.wordpress.com/212/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bochovj.wordpress.com/212/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bochovj.wordpress.com/212/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=212&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bochovj.wordpress.com/2011/10/19/nonos-first-album-juguetes-published-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b29f6a5b7d6c9c937621acc296d3ad7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bochovj</media:title>
		</media:content>
	</item>
		<item>
		<title>10 Cool sources for free VJ loops</title>
		<link>http://bochovj.wordpress.com/2011/10/11/10-cool-sources-for-cool-vj-loops/</link>
		<comments>http://bochovj.wordpress.com/2011/10/11/10-cool-sources-for-cool-vj-loops/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 21:56:33 +0000</pubDate>
		<dc:creator>bochovj</dc:creator>
				<category><![CDATA[VJing]]></category>

		<guid isPermaLink="false">http://bochovj.wordpress.com/?p=194</guid>
		<description><![CDATA[Hi, I usually prepare my loops from downloaded videos on the Internet. For ethical reasons I always try to get &#8220;free&#8221; material, in the sense of having open source-style licenses like creative commons. Here there is a list of cool webstes where to get good stuff: 1) Archive.org This is my favorite one, all the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=194&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>I usually prepare my loops from downloaded videos on the Internet. For ethical reasons I always try to get &#8220;free&#8221; material, in the sense of having open source-style licenses like creative commons.</p>
<p>Here there is a list of cool webstes where to get good stuff:</p>
<p>1) <strong><a title="Archive" href="http://www.archive.org" target="_blank">Archive.org</a></strong></p>
<p>This is my favorite one, all the material is free, you can choose different media types and there is a very cool library of vintage videos called Prelinger collection: http://www.archive.org/details/prelinger with a lot of 50&#8242;s and 60s commercials and documentaries. Perfect for nice, old looking loops!</p>
<p>Another interesting library is the Ephemeral: http://www.archive.org/details/ephemera, with mostly old educational videos.</p>
<p>Almost all videos have open licenses (creative commons, public domain etc.) but be careful and read the License box before usign them!</p>
<p>2) <strong><a title="Beeple" href="http://www.beeple-crap.com/vjclips.php" target="_blank">Beeple</a></strong></p>
<p>A really nice source of VJ loops. All loops are under Creative Commons license. It&#8217;s not really my kind of style, but they are objectively nice.</p>
<p>3) <strong><a title="AVGeeks" href="http://www.avgeeks.com/" target="_blank">AVGeeks</a></strong></p>
<p>Really cool videos from the past, all their collection is also on archive.org but licensing is not very clear. They sell videos in high quality but regarding low quality previews on the web it is not very clear how you can use the material (I have sent them an email, let&#8217;s see).</p>
<p>UPDATE: I have sent them an email and their answer is pretty clear:</p>
<blockquote><p>Hi Dario,</p>
<p>Thanks for the inquiry.</p>
<p>If you use the material that is already online, it&#8217;s free and clear. We&#8217;d love a donation if the film clips were helpful to you and you&#8217;d like to support our effort to get more films online. (http://www.avgeeks.com/wp2/donate/) Even a couple of dollars will help &#8211; maybe buy us a beer or two..</p>
<p>We also have started an Adopt-a-film program where you can put money towards digitizing other films in our collection: http://www.avgeeks.com/wp2/adopt-a-film/</p>
<p>Skip Elsheimer</p>
<p>A/V Geeks LLC</p></blockquote>
<p>4) <strong><a title="Vidtionary" href="http://www.vidtionary.com/" target="_blank">Vidtionary</a></strong></p>
<p>The perfect idea for the VJ who looks for specific semantics in the loop. You put the word and search. The website contains mostly links to other sources, and the licensing is not always clear, so be careful and read the details of the movie clearly!</p>
<p>5) <strong><a title="Creative commons videos" href="http://creativecommons.org/video/" target="_blank">Creative Commons Videos</a></strong></p>
<p>checkout the blog from the official creative commons webiste, sometimes really nice stuff are published there, and you won&#8217;t have doubts about the license.</p>
<p>6) <strong><a title="Wikimedia" href="http://commons.wikimedia.org/wiki/Category:Videos" target="_blank">Wikimedia</a></strong></p>
<p>whatever is here is with free license, many weird videos, sometimes even too weird.</p>
<p>7) <strong><a href="http://lcweb2.loc.gov/ammem/edhtml/edmvhm.html" target="_blank">Edison Motion Pictures</a></strong></p>
<p>Beautiful old videos. And these are really ooold ones. Since industry has not obtained an infinite life extension of copyright yet (give them few years still), these movies are completely public domain.</p>
<p> <img src='http://s0.wp.com/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> <strong><a href="http://www.nv.doe.gov/library/films/testfilms.aspx" target="_blank">U.S. Department of Energy Historical Test Films</a></strong></p>
<p>Do you want the bomb? Here&#8217;s a nice collection about experiments with nuclear bombs. All the material is of public domain. A little bit repetitive though.</p>
<p>9) <strong><a href="http://search.creativecommons.org" target="_blank">Creative commons search engine</a></strong></p>
<p>The creative commons site has a list of links to other search engines that allow creative commons content. Among them, there is a link to Youtube, which already supports CC as an official licensing scheme, the pity is that the site doesn&#8217;t really allow filtering per license and thus you have to pay attention at what the results are. In any case you can use this website also for looking for pictures and types of content.</p>
<p>10) <strong><a href="http://www.google.com" target="_blank">Google</a></strong></p>
<p>If you go to the advanced settings, you can choose the type of license the content you are looking for should have. Then, back on the search page, you can select Videos as the type of content. I have to say that I have found more stuff on Archive than on Google, their searching algorithms are still not very good at selecting licenses.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bochovj.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bochovj.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bochovj.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bochovj.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bochovj.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bochovj.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bochovj.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bochovj.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bochovj.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bochovj.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bochovj.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bochovj.wordpress.com/194/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bochovj.wordpress.com/194/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bochovj.wordpress.com/194/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=194&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bochovj.wordpress.com/2011/10/11/10-cool-sources-for-cool-vj-loops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b29f6a5b7d6c9c937621acc296d3ad7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bochovj</media:title>
		</media:content>
	</item>
		<item>
		<title>MidiWii released !</title>
		<link>http://bochovj.wordpress.com/2011/07/03/midiwii-released/</link>
		<comments>http://bochovj.wordpress.com/2011/07/03/midiwii-released/#comments</comments>
		<pubDate>Sun, 03 Jul 2011 15:30:26 +0000</pubDate>
		<dc:creator>bochovj</dc:creator>
				<category><![CDATA[MIDI]]></category>
		<category><![CDATA[Wii]]></category>
		<category><![CDATA[WiiMote]]></category>

		<guid isPermaLink="false">http://bochovj.wordpress.com/?p=186</guid>
		<description><![CDATA[MidiWii is a small program written in Java that translates the messages sent by a WiiMote into MIDI messages. I have released the source code in my repository and also a downloadable executable jar here. Things you can do with MidiWii: - control some of your Resolume commands with the wii mote - play some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=186&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://code.google.com/p/bochovj/wiki/MidiWii">MidiWii</a> is a small program written in Java that translates the messages sent by a WiiMote into MIDI messages.<br />
I have released the source code in <a href="http://code.google.com/p/bochovj/source/browse/#svn%2Ftrunk%2FJava%2FMidiWii">my repository</a> and also a downloadable executable jar <a href="http://code.google.com/p/bochovj/downloads/list" title="bochoVJ downloads">here</a>.</p>
<p>Things you can do with MidiWii:</p>
<p>- control some of your Resolume commands with the wii mote<br />
- play some notes with the wii mote<br />
- control some effects on audio and/or video by moving the wii mote</p>
<p>And here a couple of screenshots:</p>

<a href='http://bochovj.wordpress.com/2011/07/03/midiwii-released/configdialog/' title='ConfigDialog'><img data-attachment-id='187' data-orig-size='231,394' data-liked='0'width="87" height="150" src="http://bochovj.files.wordpress.com/2011/07/configdialog.jpg?w=87&#038;h=150" class="attachment-thumbnail" alt="ConfigDialog" title="ConfigDialog" /></a>
<a href='http://bochovj.wordpress.com/2011/07/03/midiwii-released/mainwindow/' title='MainWindow'><img data-attachment-id='188' data-orig-size='276,166' data-liked='0'width="150" height="90" src="http://bochovj.files.wordpress.com/2011/07/mainwindow.jpg?w=150&#038;h=90" class="attachment-thumbnail" alt="MainWindow" title="MainWindow" /></a>
<a href='http://bochovj.wordpress.com/2011/07/03/midiwii-released/midiselect/' title='MidiSelect'><img data-attachment-id='189' data-orig-size='470,202' data-liked='0'width="150" height="64" src="http://bochovj.files.wordpress.com/2011/07/midiselect.jpg?w=150&#038;h=64" class="attachment-thumbnail" alt="MidiSelect" title="MidiSelect" /></a>

<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bochovj.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bochovj.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bochovj.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bochovj.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bochovj.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bochovj.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bochovj.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bochovj.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bochovj.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bochovj.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bochovj.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bochovj.wordpress.com/186/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bochovj.wordpress.com/186/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bochovj.wordpress.com/186/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=186&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bochovj.wordpress.com/2011/07/03/midiwii-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b29f6a5b7d6c9c937621acc296d3ad7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bochovj</media:title>
		</media:content>

		<media:content url="http://bochovj.files.wordpress.com/2011/07/configdialog.jpg?w=87" medium="image">
			<media:title type="html">ConfigDialog</media:title>
		</media:content>

		<media:content url="http://bochovj.files.wordpress.com/2011/07/mainwindow.jpg?w=150" medium="image">
			<media:title type="html">MainWindow</media:title>
		</media:content>

		<media:content url="http://bochovj.files.wordpress.com/2011/07/midiselect.jpg?w=150" medium="image">
			<media:title type="html">MidiSelect</media:title>
		</media:content>
	</item>
		<item>
		<title>Robot alien box</title>
		<link>http://bochovj.wordpress.com/2011/06/19/robot-alien-box/</link>
		<comments>http://bochovj.wordpress.com/2011/06/19/robot-alien-box/#comments</comments>
		<pubDate>Sun, 19 Jun 2011 19:52:08 +0000</pubDate>
		<dc:creator>bochovj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://bochovj.wordpress.com/?p=179</guid>
		<description><![CDATA[Today I&#8217;ve spent a couple of hours creating this new alien box: Originally it was a box inside some doll that laughed when pressing it. I have substituted the pitch resistance with two springs, the original button with a new one and added a plug for earphones. And this is what it does:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=179&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today I&#8217;ve spent a couple of hours creating this new alien box:</p>

<a href='http://bochovj.wordpress.com/2011/06/19/robot-alien-box/p1010208/' title='P1010208'><img data-attachment-id='180' data-orig-size='1832,1427' data-liked='0'width="150" height="116" src="http://bochovj.files.wordpress.com/2011/06/p1010208.jpg?w=150&#038;h=116" class="attachment-thumbnail" alt="P1010208" title="P1010208" /></a>
<a href='http://bochovj.wordpress.com/2011/06/19/robot-alien-box/p1010209/' title='P1010209'><img data-attachment-id='181' data-orig-size='2560,1920' data-liked='0'width="150" height="112" src="http://bochovj.files.wordpress.com/2011/06/p1010209.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="P1010209" title="P1010209" /></a>

<p>Originally it was a box inside some doll that laughed when pressing it. I have substituted the pitch resistance with two springs, the original button with a new one and added a plug for earphones.</p>
<p>And this is what it does:</p>
<div class='embed-vimeo' style='text-align:center;'><iframe src='http://player.vimeo.com/video/25318133' width='400' height='300' frameborder='0'></iframe></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bochovj.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bochovj.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bochovj.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bochovj.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bochovj.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bochovj.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bochovj.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bochovj.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bochovj.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bochovj.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bochovj.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bochovj.wordpress.com/179/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bochovj.wordpress.com/179/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bochovj.wordpress.com/179/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=179&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bochovj.wordpress.com/2011/06/19/robot-alien-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b29f6a5b7d6c9c937621acc296d3ad7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bochovj</media:title>
		</media:content>

		<media:content url="http://bochovj.files.wordpress.com/2011/06/p1010208.jpg?w=150" medium="image">
			<media:title type="html">P1010208</media:title>
		</media:content>

		<media:content url="http://bochovj.files.wordpress.com/2011/06/p1010209.jpg?w=150" medium="image">
			<media:title type="html">P1010209</media:title>
		</media:content>
	</item>
		<item>
		<title>Minia library for Java</title>
		<link>http://bochovj.wordpress.com/2011/06/10/minia-library-for-java/</link>
		<comments>http://bochovj.wordpress.com/2011/06/10/minia-library-for-java/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 22:29:32 +0000</pubDate>
		<dc:creator>bochovj</dc:creator>
				<category><![CDATA[Minia]]></category>
		<category><![CDATA[HID]]></category>
		<category><![CDATA[java]]></category>

		<guid isPermaLink="false">http://bochovj.wordpress.com/?p=171</guid>
		<description><![CDATA[After quite a big effort I have managed to use my Minia in Java. Unfortunately there is no native support for HID devices in the JVM so one has to map some native library of the OS using JNI or JNA or map some third party library like the HIDApi that is esactly what I [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=171&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>After quite a big effort I have managed to use my Minia in Java.<br />
Unfortunately there is no native support for HID devices in the JVM so one has to map some native library of the OS using JNI or JNA or map some third party library like the <a href="http://www.signal11.us/oss/hidapi/" title="HIDApi" target="_blank">HIDApi</a> that is esactly what I did.<br />
This library claims to be compatible with Windows, Linux and MacOSX.<br />
I have compiled it for Windows, and after some useless attempts I have managed to import in java using JNA.</p>
<p>After this I created a little abstraction for the device and a little GUI for testing it.<br />
As usual the code is available in my repository <a href="http://code.google.com/p/bochovj/source/browse/#svn%2Ftrunk%2FJava%2FHIDApi" target="_blank">here</a>.</p>
<p>I have also created a small wiki page <a href="http://code.google.com/p/bochovj/wiki/HIDApi" target="_blank">here</a> and <a href="http://minia.wikkii.com/wiki/Tutorials#Minia_and_Java" target="_blank">here</a>.</p>
<p>Have fun.</p>
<p><img alt="A simple GUI for testing the Minia" src="https://bochovj.googlecode.com/svn/trunk/Java/HIDApi/docs/MiniaTester.jpg" title="Minia tester GUI" class="alignnone" width="349" height="271" /></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bochovj.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bochovj.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bochovj.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bochovj.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bochovj.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bochovj.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bochovj.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bochovj.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bochovj.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bochovj.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bochovj.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bochovj.wordpress.com/171/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bochovj.wordpress.com/171/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bochovj.wordpress.com/171/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=171&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bochovj.wordpress.com/2011/06/10/minia-library-for-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b29f6a5b7d6c9c937621acc296d3ad7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bochovj</media:title>
		</media:content>

		<media:content url="https://bochovj.googlecode.com/svn/trunk/Java/HIDApi/docs/MiniaTester.jpg" medium="image">
			<media:title type="html">Minia tester GUI</media:title>
		</media:content>
	</item>
		<item>
		<title>More from the Nosmis Experience</title>
		<link>http://bochovj.wordpress.com/2011/05/11/more-from-the-nosmis-experience/</link>
		<comments>http://bochovj.wordpress.com/2011/05/11/more-from-the-nosmis-experience/#comments</comments>
		<pubDate>Wed, 11 May 2011 21:36:34 +0000</pubDate>
		<dc:creator>bochovj</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[VJing]]></category>

		<guid isPermaLink="false">http://bochovj.wordpress.com/?p=158</guid>
		<description><![CDATA[A friend of mine published another video of the Nosmis show where I performed as VJ, you can see it here:<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=158&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A friend of mine published another video of the Nosmis show where I performed as VJ, you can see it here:</p>
<p><object width="450" height="278"><param name="movie" value="http://www.youtube.com/v/6BFJ23F6-6g?version=3"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/6BFJ23F6-6g?version=3" type="application/x-shockwave-flash" width="450" height="278" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bochovj.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bochovj.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bochovj.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bochovj.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bochovj.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bochovj.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bochovj.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bochovj.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bochovj.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bochovj.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bochovj.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bochovj.wordpress.com/158/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bochovj.wordpress.com/158/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bochovj.wordpress.com/158/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=158&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bochovj.wordpress.com/2011/05/11/more-from-the-nosmis-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b29f6a5b7d6c9c937621acc296d3ad7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bochovj</media:title>
		</media:content>
	</item>
		<item>
		<title>My last show, the Nosmis Experience</title>
		<link>http://bochovj.wordpress.com/2011/04/07/my-last-show-the-nosmis-experience/</link>
		<comments>http://bochovj.wordpress.com/2011/04/07/my-last-show-the-nosmis-experience/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 11:44:48 +0000</pubDate>
		<dc:creator>bochovj</dc:creator>
				<category><![CDATA[VJing]]></category>

		<guid isPermaLink="false">http://bochovj.wordpress.com/?p=135</guid>
		<description><![CDATA[Hi, this is a short movie from the last show I have been involved in: The event has its own little blog here I have given support to the show of Loren y el Mago by projecting their own image to the background and adding some effects and the electronic group Fuga de freón by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=135&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>this is a short movie from the last show I have been involved in:</p>
<div class='embed-vimeo' style='text-align:center;'><iframe src='http://player.vimeo.com/video/21973515' width='400' height='300' frameborder='0'></iframe></div>
<p>The event has its own little blog <a href="http://nosmisexperience.wordpress.com/">here</a></p>
<p>I have given support to the show of <em>Loren y el Mago</em> by projecting their own image to the background and adding some effects and the electronic group <em><a href="http://fugadefreon.blogspot.com//">Fuga de freón</a></em> by showing some vintage loops taken from old adverts.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bochovj.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bochovj.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bochovj.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bochovj.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bochovj.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bochovj.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bochovj.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bochovj.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bochovj.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bochovj.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bochovj.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bochovj.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bochovj.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bochovj.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bochovj.wordpress.com&amp;blog=6897849&amp;post=135&amp;subd=bochovj&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bochovj.wordpress.com/2011/04/07/my-last-show-the-nosmis-experience/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b29f6a5b7d6c9c937621acc296d3ad7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">bochovj</media:title>
		</media:content>
	</item>
	</channel>
</rss>
