02
Mar 11

code 6

some code from class – simple fft, audio recording (direct and to a buffer):  avsys_wk6


24
Feb 11

homework 5

audio analysis meets white square (200px x 200px)

in this homework, I want you to have the same basic rules:

a) start with a white square, 200px x 200px, centered on the screen  *
b) start with a blackbackground
c) draw nothing else on screen

note, to center on the screen, you can use 
ofSetRectMode(OF_RECTMODE_CENTER);
ofRect(ofGetWidth()/2, ofGetHeight()/2, 200,200);
or 
ofRect(ofGetWidth()/2 - 100, ofGetHeight()/2 - 100, 200,200);

then, based on sonic input, manipulate  the square (or the scene).  what happens to the  square is up to you, does it rotate?  does it change in color?  grow? bounce? explode??

think specifically about sonic qualities, like pitch, and frequency information, and think about “performing” your white square.

make 3 different examples using the variety of techniques of analysis we talked about, pitch detection, fft, and volume detection.

have fun!

+

also make a graphical score to a piece of music / sound for which traditional music notation isn’t necessary.  Think about what visual languages you can use to represent sound.   for inspiration, see:

http://en.wikipedia.org/wiki/Graphic_notation

http://www.eyemagazine.com/feature.php?id=23&fid=168

http://at.or.at/hans/solitude/


23
Feb 11

Code from Class 5

download


17
Feb 11

homework 4

A) Build a non computational sound visualizer
B) Build / Find / Document a visual equivalent to granular synthesis — think specifically about the stochastic nature of granular synthesis, and how you can make something that’s a visual equivalent.
(these are optional / advanced )
C) Advanced: Build an app that uses live audio input to record data for the granular synthesizer.
D) Advanced: Build a Granular sound generator app controlled by a particle system.

17
Feb 11

links from class 4

Granular synthesis
http://www.soundonsound.com/sos/dec05/images/granularheader.s.jpg
thicket app
AVES / Golan levin:
http://acg.media.mit.edu/people/golan/aves/
http://reactual.com/installation-art/video-sound-woodworms-captured-microphone-sound-tiny-motors-left-devices.html   (in nature)
pitch changing — http://www.youtube.com/watch?v=QspuCt1FM9M
Granular synthesis visual equivalents
tom friedman (not the economist): total box
http://www.youtube.com/watch?v=qVpaanzd9Cs
http://createdigitalmotion.com/2011/02/an-alphabet-of-abstract-animation-26-short-films-by-mirai-mizue/
granular synthesis / kurt hentshlager http://www.youtube.com/watch?v=0NLLRKGVDl4
http://www.creativeapplications.net/openframeworks/selective-memory-theatre-openframeworks/
http://www.google.com/images?q=particle+systems&um=1&ie=UTF-8&source=og&sa=N&hl=en&tab=wi&biw=1995&bih=937
http://surabhisaraf.net/works/fold-2010/
Intro to audio input / Volume RMS, etc
http://web.archive.org/web/20080321115338/http://www.prorec.com/Articles/tabid/109/EntryID/247/Default.aspx
http://en.wikipedia.org/wiki/Root_mean_square
phyiscial modeling
stk
motif / yamaha AM1X
lecture: sounds visualizers
robert hodgins http://vimeo.com/169308
find some good stuff here:  http://reactual.com/
cymatics http://en.wikipedia.org/wiki/Cymatics
http://reactual.com/sound-visualizers/cymatics.html
messa di voce / remark
http://stfj.net/art/2007/These%20Woods%20Video%20Interpretation/
http://www.youtube.com/watch?v=YedgubRZva8
http://www.youtube.com/watch?v=Yw4qklgNIxI – insane starch monsters
ruebens tube! http://www.youtube.com/watch?v=HpovwbPGEoo
daito manabe / face: http://www.youtube.com/watch?v=YxdlYFCp5Ic

17
Feb 11

code from class 4

here’s code from class 4 — granular synthesis, RMS for volume, camera / capture hooked up to the additive interactive example.

also, including the app (but not code… yet) for the granular recorder.

avsys_wk4

have fun!


09
Feb 11

homework 3

a) See something in new york — a performance, installation, play  — and take some photographs or notes about it.  Let’s do research IRL not just on the net!

b) Create 3 interactive audio visual systems based on AM, FM or Additive synthesis and a primitive visual form (circle, square, triangle).   Think about creating the tightest relationship between the sound and the visual form, and how interaction (mouse, keyboard, other) can influence that.


09
Feb 11

code from class 3

this is code from class, intro to control panel, AM, FM and additive with control panel, and interactive examples for FM and additive synthesis: avsys_wk3


07
Feb 11

FM and AM modulation sound samples for HW 2

Hey guys, here are some sound samples for you to match your code up with to make sure that you’ve implemented AM and FM correctly.

Both samples have their Carrier Wave set to 880 Hz and their Modulator Wave set to 440 Hz.

AMFMSamples


02
Feb 11

homework 2

a) implement additive, AM and FM synthesis using the sin wave code as a starting point.

b) using additive synthesis, create the most harmonious, beautiful sound that you can.  think about using multiple sin osicllators, with various levels of volume.  Be very, very, very careful not to clip your sounds (ie, scale the volumes so that they add up to less then 1.0).    Use many oscillators.

c) using additive synthesis, create the most evil, terrible, cacophonous and dissonant sound.   Again, take care about volume levels.

d) try to see what the limit of your computer is by adding as many sin oscillators as you can together.   how many can you put into the app with out it skipping.  take care about the volume of each osciallator.

e) using any synthesis technique, attempt to recreate these tones: 

f) make music ! try to transcribe a song (turning the notes into frequencies) and play it via code. And / or, try to create a sequencer that allow you to compose music by controlling some parameters of synthesis over time.   then, create some music with this tool.

have fun!