<?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>jaiunblog.com &#124; j&#039;ai un blog - graphisme, design, programmation &#187; webcam</title>
	<atom:link href="http://jaiunblog.com/tag/webcam/feed/" rel="self" type="application/rss+xml" />
	<link>http://jaiunblog.com</link>
	<description>un peu de tout et beaucoup de rien ça fait du bien !</description>
	<lastBuildDate>Thu, 17 May 2012 10:12:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>processing 2.05a + webcam</title>
		<link>http://jaiunblog.com/3743/processing-2-05a-webcam/</link>
		<comments>http://jaiunblog.com/3743/processing-2-05a-webcam/#comments</comments>
		<pubDate>Sun, 08 Apr 2012 16:58:36 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[programmation]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3743</guid>
		<description><![CDATA[Une nouvelle version de Processing 2 est disponible en version Alpha depuis quelques jours (ici). La capture vidéo (webcam) a changé depuis la v2, voici la nouvelle méthode (avec start()) : import processing.video.*; Capture video; void setup() { size(320, 240); video = new Capture(this, 320, 240); video.start(); background(0); } void draw() { if (video.available()) { [...]]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p>Une nouvelle version de Processing 2 est disponible en version Alpha depuis quelques jours (<a href="http://processing.org/download/">ici</a>).</p>
<p>La capture vidéo (webcam) a changé depuis la v2, voici la nouvelle méthode (avec start()) :</p>
<pre class="brush: java; title: ;">
import processing.video.*;
Capture video;

void setup() {
  size(320, 240);
  video = new Capture(this, 320, 240);
  video.start();
  background(0);
}

void draw() {
  if (video.available()) {
    video.read();
    image(video,0,0);
  }
}
</pre>
<p>L&#8217;ancienne méthode pour processing 1.5x est disponible <a href="http://processing.org/reference/libraries/video/Capture.html">ici</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3743/processing-2-05a-webcam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>processing #9 : cadeau !</title>
		<link>http://jaiunblog.com/3626/processing-9-cadeau/</link>
		<comments>http://jaiunblog.com/3626/processing-9-cadeau/#comments</comments>
		<pubDate>Tue, 27 Sep 2011 21:03:37 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[gif]]></category>
		<category><![CDATA[processing]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3626</guid>
		<description><![CDATA[Vous aimez les gif animés ? Aujourd&#8217;hui, voici une petite application (à télécharger pour Mac en bas de cette article) pour transformer votre webcam en machine à gif, le tout en Processing ! Mode d&#8217;emploi : clic gauche pour ajouter une image, clic droit pour enregistrer, le fichier est créé dans le répertoire de l&#8217;application [...]]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src="http://jaiunblog.com/blog/wp-content/uploads/2011/05/p5.png" alt="" title="p5" width="425" height="170" class="alignnone size-full wp-image-3421" /></p>
<p>Vous aimez les gif animés ?<br />
Aujourd&#8217;hui, voici une petite application (à télécharger pour Mac en bas de cette article) pour transformer votre webcam en machine à gif, le tout en Processing !<br />
Mode d&#8217;emploi : clic gauche pour ajouter une image, clic droit pour enregistrer, le fichier est créé dans le répertoire de l&#8217;application avec comme nom « l&#8217;heure » .gif, et on peut en refaire un en cliquant de nouveau.</p>
<p>Si vous voulez l&#8217;améliorer, il faut installer cette <a href="http://www.extrapixel.ch/processing/gifAnimation/">librairie</a> dans votre Processing.</p>
<p>Les sources sont livrées dans le zip.</p>
<pre class="brush: java; title: ;">
import processing.video.*;
import gifAnimation.*;

Capture myCapture;
GifMaker gifExport;
boolean ready;
String name;
Gif last;

void setup() {
  ready=true;
  background(0);
  size(320, 240);
  frameRate(25);
  myCapture = new Capture(this, 320, 240, 30);
  bw_start();
}

void bw_start() {
  int s = second();
  int m = minute();
  int h = hour();
  name = nf(h, 2)+&quot;_&quot;+nf(m, 2)+&quot;_&quot;+nf(s, 2)+&quot;.gif&quot;;
  gifExport = new GifMaker(this, name, 0);
  gifExport.setRepeat(0);
}

void captureEvent(Capture myCapture) {
  myCapture.read();
}

void draw() {
  if (ready) {
    image(myCapture, 0, 0);
  }
  else {
    PFont geneva = createFont(&quot;geneva&quot;, 9, false);
    textFont(geneva, 9);
    image(last, 0, 0);
    text(&quot;Gif My Cam!\n-- result --\nclick to create again&quot;, 20, 20);
  }
}

void mousePressed() {
  if (ready) {
    if (mouseButton== LEFT) {
      gifExport.setSize(320, 240);
      gifExport.setDelay(70);
      gifExport.addFrame();
    }
    if (mouseButton== RIGHT) {
      ready=false;
      gifExport.finish();
      last = new Gif(this, name);
      last.play();
    }
  }
  else {
    ready=true;
    bw_start();
  }
}
</pre>
<p><a href='http://jaiunblog.com/blog/wp-content/uploads/2011/09/gif_my_cam.zip'>gif_my_cam.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3626/processing-9-cadeau/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>wall-e</title>
		<link>http://jaiunblog.com/3548/wall-e/</link>
		<comments>http://jaiunblog.com/3548/wall-e/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 10:26:37 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[robot]]></category>
		<category><![CDATA[tracking]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3548</guid>
		<description><![CDATA[Wow ! EZ-Robot, une branche d&#8217;Arduino orientée robotique (si j&#8217;ai bien compris).]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><iframe width="425" height="349" src="http://www.youtube.com/embed/OJiMUzJHYFk" frameborder="0" allowfullscreen></iframe>
<p>Wow ! <a href="http://www.ez-robot.com/">EZ-Robot</a>, une branche d&#8217;Arduino orientée robotique (si j&#8217;ai bien compris).</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3548/wall-e/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>sour mirror</title>
		<link>http://jaiunblog.com/3108/sour-mirror/</link>
		<comments>http://jaiunblog.com/3108/sour-mirror/#comments</comments>
		<pubDate>Thu, 09 Dec 2010 21:56:44 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[clip]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[pop-up]]></category>
		<category><![CDATA[safari]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3108</guid>
		<description><![CDATA[Après l&#8217;expérience d&#8217;Arcade Fire voici un autre clip 2.0 http://sour-mirror.jp/, je n&#8217;ai pas réussi à voir la version avec Facebook et/ou Twitter (ça charge trop longtemps) mais avec la webcam, c&#8217;est déjà génial ! Dernier point, ça ne marche que sous Chrome ou Safari (dommage pour les autres). update : une autre merveille de sour.]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><a href="http://jaiunblog.com/blog/wp-content/uploads/2010/12/sour.jpg"><img src="http://jaiunblog.com/blog/wp-content/uploads/2010/12/sour.jpg" alt="" title="sour" width="425" height="382" class="alignnone size-full wp-image-3109" /></a>
<p>Après l&#8217;expérience d&#8217;<a href="http://www.thewildernessdowntown.com/">Arcade Fire</a> voici un autre clip 2.0 <a href="http://sour-mirror.jp/">http://sour-mirror.jp/</a>, je n&#8217;ai pas réussi à voir la version avec Facebook et/ou Twitter (ça charge trop longtemps) mais avec la webcam, c&#8217;est déjà génial !<br />
Dernier point, ça ne marche que sous Chrome ou Safari (dommage pour les autres).</p>
<p>update : <a href="http://jaiunblog.com/2826/du-neuf-avec-du-neuf/">une autre merveille de sour</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3108/sour-mirror/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>more is less</title>
		<link>http://jaiunblog.com/3077/more-is-less/</link>
		<comments>http://jaiunblog.com/3077/more-is-less/#comments</comments>
		<pubDate>Thu, 04 Nov 2010 19:44:36 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[clip]]></category>
		<category><![CDATA[collaboratif]]></category>
		<category><![CDATA[projet]]></category>
		<category><![CDATA[stop-motion]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=3077</guid>
		<description><![CDATA[J&#8217;adhère !]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><object width="425" height="340"><param name="movie" value="http://www.youtube.com/v/EkWUPRwT6YI?fs=1&amp;hl=fr_FR"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/EkWUPRwT6YI?fs=1&amp;hl=fr_FR" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="340"></embed></object>
<p>J&#8217;adhère !</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/3077/more-is-less/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>du neuf avec du neuf</title>
		<link>http://jaiunblog.com/2826/du-neuf-avec-du-neuf/</link>
		<comments>http://jaiunblog.com/2826/du-neuf-avec-du-neuf/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 20:27:04 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[clip]]></category>
		<category><![CDATA[vidéo]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=2826</guid>
		<description><![CDATA[Le palmarès d&#8217;Annecy 2010 est en ligne ! En vidéo au-dessus Prix du meilleur vidéoclip Sour &#171;&#160;Hibi No Neiro&#160;&#187; Sour &#171;&#160;Tone of Everyday&#160;&#187; Masashi Kawamura, Hal Kirkland, Magico Nakamura, Masayoshi Nakamura Japon Un futur classique du web !]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><object width="425" height="340"><param name="movie" value="http://www.youtube.com/v/WfBlUQguvyw&#038;hl=fr_FR&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/WfBlUQguvyw&#038;hl=fr_FR&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="340"></embed></object></p>
<p>Le palmarès d&#8217;Annecy 2010 est en <a href="http://www.annecy.org/edition-2010/festival:fr/palmares">ligne</a> !<br />
En vidéo au-dessus </p>
<blockquote><p>Prix du meilleur vidéoclip<br />
Sour &laquo;&nbsp;Hibi No Neiro&nbsp;&raquo;<br />
Sour &laquo;&nbsp;Tone of Everyday&nbsp;&raquo;</p>
<p>Masashi Kawamura, Hal Kirkland, Magico Nakamura, Masayoshi Nakamura<br />
Japon</p></blockquote>
<p>Un futur classique du web !</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/2826/du-neuf-avec-du-neuf/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>as3</title>
		<link>http://jaiunblog.com/2243/as3/</link>
		<comments>http://jaiunblog.com/2243/as3/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 15:01:35 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=2243</guid>
		<description><![CDATA[// mon flash + webcam semble faire planter firefox // Je viens de réaliser un script en as3, pour faire des captures (snapshot) en jpg de la webcam x fois toutes les y millisecondes, avec un bout de php qui écrit le fichier sur le serveur (ou avec mamp/wamp/&#8230; sur votre disque dur) et comme [...]]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p>// mon flash + webcam semble faire planter firefox //<br />
Je viens de réaliser un script en as3, pour faire des captures (snapshot) en jpg de la webcam x fois toutes les y millisecondes, avec un bout de php qui écrit le fichier sur le serveur (ou avec mamp/wamp/&#8230; sur votre disque dur) et comme je n&#8217;aime pas l&#8217;as3, les class, le compilateur Flash, j&#8217;ai passé des variables via le html ! J&#8217;ai rien inventé, j&#8217;ai juste compilé des exemples mais ce fut assez hasardeux pour avoir une image correcte&#8230; la plupart des scripts propose du 160 x 120, là j&#8217;ai un 1200 x 900 (enfin la isight des macbook monte qu&#8217;à 800 x 600 je crois).<br />
Les fichiers sources sont en bas.<br />
Pour changer x et y, fichier html -&gt; ligne 14 et 15 (boucle et delay)<br />
Pour lancer l&#8217;application, une fois mamp/wamp ok -&gt; copier aussi dans htdocs ou www, puis ouvrir</p>
<p>http://localhost:xxxx/xxxxx/index.html</p>
<p>L&#8217;image de la webcam bug quelques secondes au lancement, une fois stable, on clique et les captures sont sur le disque dur dans le dossier de l&#8217;index.html.</p>
<pre class="brush: as3; title: ;">
import flash.display.Bitmap;
import flash.display.BitmapData;
import flash.utils.Timer;
import flash.events.TimerEvent;

import com.adobe.images.JPGEncoder;

var Delay:Number = (this.loaderInfo.parameters.Delay)?this.loaderInfo.parameters.Delay:5000;
var Boucle:Number = (this.loaderInfo.parameters.Boucle)?this.loaderInfo.parameters.Boucle:10;
var MonChemin:String = (this.loaderInfo.parameters.MonChemin)?this.loaderInfo.parameters.MonChemin:&amp;quot;&amp;quot;;

var cam:Camera = Camera.getCamera();

var bandwidth:int=0;// Specifies the maximum amount of bandwidth that the current outgoing video feed can use, in bytes per second. To specify that Flash Player video can use as much bandwidth as needed to maintain the value of quality , pass 0 for bandwidth . The default value is 16384.
var quality:int=100;// this value is 0-100 with 1 being the lowest quality. Pass 0 if you want the quality to vary to keep better framerates
cam.setQuality(bandwidth, quality);
cam.setMode(1200,900,5,true);

var video:Video = new Video(1200,900);
video.attachCamera(cam);
video.x = 0;
video.y = 0;
addChild(video);

var bitmapData:BitmapData = new BitmapData(video.width,video.height);

var bitmap:Bitmap = new Bitmap(bitmapData);
bitmap.x = 1200;
bitmap.y = 0;
addChild(bitmap);
//capture_mc
capture_mc.buttonMode = true;
capture_mc.addEventListener(MouseEvent.CLICK,captureImage);

function captureImage(e:MouseEvent):void {
	//bitmapData.draw(video);
		myTimer.start();
}

function prendrePhoto(e:TimerEvent):void {
	var now:Date = new Date();

	bitmapData.draw(video);
	var bm_video:Bitmap = new Bitmap(bitmapData);
	var jpgEncoder:JPGEncoder = new JPGEncoder(90);
	var jpgStream:ByteArray = jpgEncoder.encode(bitmapData);
	var header:URLRequestHeader = new URLRequestHeader(&quot;Content-type&quot;, &quot;application/octet-stream&quot;);
	var jpgURLRequest:URLRequest = new URLRequest(MonChemin+&quot;upload.php?filename=&quot;+now.getHours()+&quot;-&quot;+now.getMinutes()+&quot;-&quot;+now.getSeconds()+&quot;.jpg&quot;);
	jpgURLRequest.requestHeaders.push(header);
	jpgURLRequest.method = URLRequestMethod.POST;
	jpgURLRequest.data = jpgStream;
	var loader:URLLoader = new URLLoader();
	loader.addEventListener(Event.COMPLETE, uploadCompleted);
	loader.load(jpgURLRequest);
	bitmap.x = 0;

}
function uploadCompleted(e:Object):void {
	trace(&quot;uploaded finisehd&quot;);
}

var myTimer:Timer=new Timer(Delay,Boucle);
	myTimer.addEventListener(&quot;timer&quot;, prendrePhoto);
</pre>
<p>le php qui écrit sur le disque dur (ou sur le serveur).</p>
<pre class="brush: php; title: ;">
&lt;?
$filename=$_GET[&quot;filename&quot;];
$fp = fopen($filename , 'wb' );
$jpg = $GLOBALS[&quot;HTTP_RAW_POST_DATA&quot;];
fwrite( $fp, ($jpg) );
fclose( $fp );
?&gt;
</pre>
<p>Le HTML, avec intégration swfobject (ni hao ^^).</p>
<pre class="brush: xml; title: ;">
   &lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Strict//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot;&gt;
      &lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; lang=&quot;fr&quot; xml:lang=&quot;fr&quot;&gt;
	&lt;head&gt;
		&lt;title&gt;Test&lt;/title&gt;
		&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;/&gt;
		&lt;meta name=&quot;description&quot; content=&quot;SwfcamPhp&quot;/&gt;
&lt;meta name=&quot;author&quot; content=&quot;Ben&quot;/&gt;
&lt;meta name=&quot;keywords&quot; content=&quot;swf&quot;/&gt;
		&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;style.css&quot;/&gt;
		&lt;script type=&quot;text/javascript&quot; src=&quot;swfobject.js&quot;&gt;&lt;/script&gt;
		&lt;script type=&quot;text/javascript&quot;&gt;
		var flashvars = {};
		flashvars.MonChemin = window.location.href; //&quot;http://localhost:8888/snapshot/&quot;;
		flashvars.Delay = 1000;
		flashvars.Boucle = 10;
		swfobject.embedSWF(&quot;camnice.swf&quot;, &quot;flashcontent&quot;, &quot;1200&quot;, &quot;900&quot;, &quot;10.0.0&quot;,&quot;&quot;,flashvars);
		&lt;/script&gt;
	&lt;/head&gt;
	&lt;body&gt;
&lt;div id=&quot;flashcontent&quot;&gt;you need to get the new flash player&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>Voici la source : <a href="http://jaiunblog.com/blog/wp-content/uploads/2010/01/swfcam.zip">swfcam.zip</a><br />
Merci à <a href="http://toki-woki.net/">quentin</a> pour avoir dégoté un script as3 beaucoup mieux pour la résolution :)<br />
Tout ça me donne quand même envie de me mettre à Processing :)</p>
<p><img class="alignnone size-full wp-image-2261" title="vomi+DEF" src="http://jaiunblog.com/blog/wp-content/uploads/2010/01/vomi+DEF.jpg" alt="" width="425" height="560" /></p>
<p><a href="http://laetitiaandsebastien.blogspot.com/2010/01/serie-mode-du-clark-magazine-40.html">crédit photo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/2243/as3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>du sur mesure</title>
		<link>http://jaiunblog.com/1921/du-sur-mesure/</link>
		<comments>http://jaiunblog.com/1921/du-sur-mesure/#comments</comments>
		<pubDate>Mon, 29 Jun 2009 10:15:20 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[musique]]></category>
		<category><![CDATA[programmation]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=1921</guid>
		<description><![CDATA[http://www.instructables.com/id/Building-a-drum-machine-with-low-cost-tangible-int/ merci Geoffrey !]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/AmGP3eCOF5A&#038;hl=fr&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/AmGP3eCOF5A&#038;hl=fr&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p><a href="http://www.instructables.com/id/Building-a-drum-machine-with-low-cost-tangible-int/">http://www.instructables.com/id/Building-a-drum-machine-with-low-cost-tangible-int/</a><br />
merci Geoffrey !</p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/1921/du-sur-mesure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gol project</title>
		<link>http://jaiunblog.com/444/gol-project/</link>
		<comments>http://jaiunblog.com/444/gol-project/#comments</comments>
		<pubDate>Fri, 16 Feb 2007 17:07:11 +0000</pubDate>
		<dc:creator>ben</dc:creator>
				<category><![CDATA[graphisme]]></category>
		<category><![CDATA[programmation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://jaiunblog.com/?p=444</guid>
		<description><![CDATA[Gol project permet d&#8217;écrire avec la lumière, branchez votre webcam, c&#8217;est génial ! Vu chez http://www.cuartoderecha.com]]></description>
			<content:encoded><![CDATA[<!-- Flash Video Resizer 1.4 : 425pixel --><p><img src='http://www.jaiunblog.com/blog/wp-content/uploads/2007/02/gol.jpg' alt='gol.jpg' />
<p> <a href="http://www.hgwlab.com/gol/" class="broken_link">Gol project</a> permet d&#8217;écrire avec la lumière, branchez votre webcam, c&#8217;est génial !<br />
Vu chez <a href="http://www.cuartoderecha.com">http://www.cuartoderecha.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jaiunblog.com/444/gol-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

