User:Mitsa/Final presentation

From XPUB & Lens-Based wiki

First Year

Si16

Personal reflection

Photo 2022-03-26 16-15-02.jpg
Interface form.jpg

In the SI16 I co-produced the project "...And I wish that your question has been answered". I also participated in the writing of the Manifesto of and the Terms of service of the publication. In the project I worked on the functions Respell, Stitch and Reveal, which are based on the Replace Python function. I was occupied by the urge to understand how the choice of specific words inside a text can shape our ideologies. In that sense I proposed to use the three functions on the political speeches of Mark Rutte and Kiriakos Mitsotakis, prime ministers of Netherlands and Greece, about the pushbacks on the EU borders. As a result, we came out with an interface where a user can interchange specific words of these 2 speeches with others words, characters or blankets in order to disrupt and question the meaning of the original texts.

conversation with Carmen and Erica

  • the vernacular as encrypted languages between allies
  • the audience should be the ordinary
  • self experience is central
  • what are the power relations inside the system we are addressing?

conversation and diagrams with Erica about forced poetics and empowerment

  • you are an expert of what you experience
  • the standarisation gatekeeps the vernacular
  • the hegemonic gatekeeps the urge
  • there is a barrier created by the correct, the beautiful, the tasty that blocks the urge
  • and this barrier is created through power
  • conflict between the content that needs to be expressed and the available language
  • how to use a tool that you don't master?

Si17

Si18

Second Year

Thesis

Project

Script for the live coding performance in sonic pi

  1. I am so happy that you are here tonight
  2. I am so happy that you came here to listen to me
  3. Thank you, thank you so much
  4. I would like to be bigger
  5. i don't know what to do with all this energy
  6. I am a small creature
  7. Trapped inseid
  8. What do you think?
  9. What do you think of me?
  10. They wanted to put my head into the ground
  11. They didn't want us! They don't want us!
  12. I can stay in the corner and observe
  13. I can stay I can open my ears and listen
  14. We have learnt to hide
  15. It's hard to not be recognised
  16. It's like you don't exist, but you exist hahaha
  17. You have a body
  18. I like to adapt A LOT that's what i do in life
  19. I just adapt my voice
  20. What ? What ? Whaat? What the fuck is this?
  21. STOP STOP STOOOOP
  22. i want to be regulated and filtered
  23. FILTER MEEEEE
  24. What do you do usually? Do you adapt? Do you resist? Do you fight?
  25. DO you fly? Do you stay??
  26. but did this even happen this way?
  27. Did she say this or i don't know
  28. I wanna go in the corner and suck my thumb
  29. do i need to be stronger?
  30. do i need to be oversized?
  31. do i need to stand out? maybe
  32. is that ok?
  33. i am sorry, don't leave me
  34. thank you i love you
  35. thank you that you came to listen to me


  1. I put the microphone and it works!!
  1. i need to add to add a fader just for the stretched loops for on and off
  2. i need to add a second microphone input that has only my voice clean


with_fx :level do |le|

 with_fx :lpf, mix: 0 do |l|
   with_fx :pitch_shift, pitch_dis: 0.001 do |p|
     with_fx :echo, pre_mix: 0, decay: 2 do |e|

with_fx :reverb, pre_mix: 1, room: 1 do |r| use_real_time live_audio :mic

live_loop :process do use_real_time cc, val = sync "/midi:5-_zero_mkii_0:1/control_change" if cc == 23 control le, amp: val / 127.0 end if cc == 24 if cc > 63.5 control p, pitch: (val - 63.5) / 1.7 else control p, pitch: (-val + 63.5) / 6 end end if cc == 25 control e, pre_mix: val / 127 end if cc == 26 control e, phase: val * 0.1 + 0.000001 end if cc == 73 control e, decay: val / 5 + 0.000001 end if cc == 75 control r, pre_mix: val / 127 end if cc == 70 control r, room: val / 127 end if cc == 20 control l, cutoff: val end if cc == 14 control l, mix: val /127.0 end if cc == 77 with_fx :record, buffer: [:voice,10] do print "record recording" use_real_time live_audio :mic1 end end if cc == 95 #print "play recording" sample buffer[:voice,10] end if cc == 7 control sample buffer[:voice,10], rate: val * 0.1 + 0.000001 end if cc == 10 control sample buffer[:voice,10], rate: val + 0.000001 end if cc == 22 control sample buffer[:voice,10], rate: -val * 0.1 + 0.000001 end if cc == 15 control sample buffer :voice, amp: val / 127 end if cc == 82 with_fx :record, buffer: [:voice2,100] do print "record recording" use_real_time live_audio :mic1 end end if cc == 83 print "play recording" sample buffer[:voice2,100] end if cc == 74 control sample buffer[:voice2,100], rate: val * 0.1 + 0.000001 end if cc == 71 control sample buffer[:voice2,100], rate: val + 0.000001 end if cc == 85 control sample buffer[:voice2,100], rate: -val * 0.1 + 0.000001 end end end

     end
   end
 end

end

with_fx :level do |le3|

 with_fx :pitch_shift, pitch_dis: 0.001 do |p1|
   live_loop :process2 do
     use_real_time
     cc, val = sync "/midi:5-_zero_mkii_0:1/control_change"
     if cc == 72

control le3, amp: val / 127.0

     end
     if cc == 92 and val == 0

use_real_time live_audio :mic3

     end
     if cc == 92 and val == 127

kill live_audio :mic3

     end
     if cc == 19

if cc > 63.5 control p1, pitch: (val - 63.5) / 1.7 else control p1, pitch: (-val + 63.5) / 6 end

     end
   end
 end

end