====== Sons et insectes ====== {{:ateliers:sons_et_insectes:insect-atelier.jpg?nolink&600 | |}} * Dates : 31 mars 2018 * Format : démo et manipulation 1h30 / 2h * Publics: À partir de 12 ans, étudiants, adultes, débutants ou confirmés * Inscription à __info[at]reso-nance.org__ ou __mediation[at]zinclafriche.org__ * Formateurs : reso-nance numérique * Fichiers : ===== Description ===== Théorie sur le son, les ondes et la communication chez les insectes, et synthèse des sons d'insectes sur différentes interfaces numérique et électronique pour créer un orchestre interactif ludique de criquets, moustique, mouches a spatialiser. ===== Déroulé ===== * Comment les insectes communiquent ? Cours sur le son et communication. * Comparaison aux autres ondes et fréquences qui nous entourent (EMF) * Écoute de fréquences ou ondes inaudible (bat detector, signus, lumière) * Synthèse de sons d'insectes avec pure data (demo pure data fabrication d'un son d'insecte from scratch) * Portage sur Android avec Mobmuplat * Synthese sur arduino avec capteurs pour rendu interactif sensible * jeu et manipulation avec des contrôleurs (brutbox) * Enregistrement binauraux * Chimere ==== Materiel ==== * systeme son * ordinateur + vp * carte arduino + piezo : pour construire des petits objet sonores * synthé minusculux pour audio via lumiere * brutbox + patch orchestres d'insectes * micro bobine / signum pour ecouter EMF * Bat detector pour ecouter hautes frequences ==== Spectre audio et champ electromagnetique (EMF)==== {{ :ateliers:sons_et_insectes:animal_range_of_sound_website.img_assist_custom-595x284.jpg?nolink |}} {{ :ateliers:sons_et_insectes:spectrum.jpg?nolink |}} {{ :ateliers:sons_et_insectes:emf-spectrum.jpg?nolink |}} ==== Code arduino insect piezo ==== ++++ Grillon simple | int piezo = 9; int pattern= 8 ; void setup() { pinMode(piezo, OUTPUT); } void loop() { for (int i=0; i <= pattern; i++){ cricket(); delay(100); } } void cricket() { for (int i=0; i <= 5; i++){ { digitalWrite(piezo, HIGH); // turn the piezo on (HIGH is the voltage level) delay(random(15)+3); digitalWrite(piezo, LOW); // turn the piezo off by making the voltage LOW delay(15); }}} ++++ ++++ Cigale et sauterelle | int led = 9; int pattern= 8 ; void setup() { pinMode(led, OUTPUT); } void loop() { for (int i=0; i <= pattern; i++){ cricket(); delay(100); } delay(333); for (int i=0; i <= pattern; i++){ sauterelle(); delay(200); } delay(333); for (int i=0; i <= pattern; i++){ treeble(); delay(300); } delay(333); } void cricket() { for (int i=0; i <= 5; i++){ digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) delay(random(15)+3); digitalWrite(led, LOW); // turn the LED off by making the voltage LOW delay(15); } } void sauterelle() { for (int i=0; i <= 5; i++){ digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level) delay(random(40)+20); digitalWrite(led, LOW); // turn the LED off by making the voltage LOW delay(30); } } void treeble() { for (int i=0; i <= 15; i++){ tone(led, i*1000,10); delay(random(3)); } } ++++ ++++ Noise piezo | int hp = 6; void setup() { // put your setup code here, to run once: pinMode(hp, OUTPUT); } void loop() { playNoise (random( 1000) , random( 3) + 10); delay(random (10)+50); } void playNoise(int sustain , float duration) { long stopTime =micros() +1000*duration; while ( micros() < stopTime ) { if (random(100) < 50) digitalWrite (hp, HIGH); else digitalWrite (hp, LOW); delayMicroseconds(sustain); } } ++++ ==== Patch et interface mobmuplat ANdroid ==== 3 patchs générant des sons d'insectes a ouvrir avec l'application Mobmuplat sur android. {{ :ateliers:sons_et_insectes:final_mobuplat.zip |}} ===== Liens ===== * https://www.franceculture.fr/environnement/bernie-krause-contre-l-appauvrissement-des-sons-du-monde * http://robinmeier.net/ Artiste travaillant sur le sujet AI et sons insectes. * http://www.cataglyphis.fr/Publis%20AL/Colloques/La%20communication%20chez%20les%20insectes-texte.pdf Les differents mode de communication chez les insectes * http://microcox.pagesperso-orange.fr/comm_sonore.htm La communication sonore chez les insectes * http://healingsounds.co.za/content/about-sound-1 analogie entre spectre et sons relaxants * https://mitpress.mit.edu/books/designing-sound Livre sur la synthese audio via Pure Data * http://www.scantech7.com/wp-content/uploads/2015/01/Electromagnetic-Radiation-Spectrum-NEW.png * http://anso.pagesperso-orange.fr/page_le_fonctionnement.htm Son et audition fonctionnement * http://www.betrisey.ch/ecav/cours%2012.html Le spectre: ondes et concordances ===== Videos ===== ==== L'oreille humaine ==== {{youtube>SO0SUoZQ774?medium}} {{youtube>cT_uWbnFe1k?medium}} ==== Les sons d'insectes ==== {{youtube>D6shA0yJ8W4?medium}} {{youtube>FEHbY-ZkzVo?medium}} ==== Chauve souris à 96kHz & 384kHz==== {{youtube>xYOhCd7Ki8A?medium}} {{youtube>4FkGD3sde8A?medium}} ===== Photos de l'atelier ===== {{gallery>galleriephoto?&crop&lightbox }}