xxxxxxxxxx
120
let fft,mic,song,img;
let offset = 1;
let easing = 0.05;
function preload(){
song = loadSound("Tram5.mp3");
img = loadImage('2.1.jpg');
}
function setup() {
createCanvas(windowWidth,windowHeight);
// song.play();
song.loop();
fft = new p5.FFT();
fft.setInput(mic);
}
function draw() {
// background(random(225),0,random(225),random(10));
//let vol = amp.getLevel();
//analisi fft/ ixos
let spectrum = fft.analyze();
beginShape();
for (i = 0; i < spectrum.length; i++) {
let happy = (mouseX + mouseY)/2 ;
let x = map(i, 0, spectrum.length, 0, windowWidth,happy);
let y = map(spectrum[i], 0, 255, windowHeight, 0,happy);
vertex(x,y);
noStroke();
// vertex(i, map(spectrum[i],0,255,mouseY,mouseX));
} endShape();
song.rate(map(mouseX,0,displayWidth,0.3,5));
song.setVolume(map(mouseY,0,displayHeight,0.1,1));
// opacity eikonas background
let dx = mouseX - img.width / 2- offset;
offset += dx * easing;
tint(250,10);
image(img, mouseX,random(mouseY));
//xroma kai keimeno
if(song.currentTime()>45){
fill(200,130,255,40);
strokeWeight(1);
stroke(255,182,140);
textSize(8);
text("NO IDEA",mouseX,mouseY);
}else if (song.currentTime()>40){
fill(255,0,255,40);
strokeWeight(1);
stroke(198,255,1997)
textSize(10);
text("what's going on?",mouseX,mouseY);
}else if(song.currentTime()>35){
fill(240,200,255,40);
strokeWeight(1)
stroke(255,0, 255)
textSize(10);
text("where are you?",mouseX,mouseY);
}else if (song.currentTime()>30){
fill(219,62,217,40);
strokeWeight(0.5);
stroke(140,255,186);
textSize(10);
text("I am feeling okay",mouseX,mouseY);
}else if (song.currentTime()>25){
fill(189,0,255,40);
strokeWeight(1);
stroke(255,0,200)
textSize(10);
text("HOW ARE YOU?",mouseX,mouseY);
}else if(song.currentTime()>20){
fill(199,36,177,40);
strokeWeight(1)
stroke(240, 255, 255)
textSize(10);
text("are you feeling good?",mouseX,mouseY);
}else{
fill(111,0,253,40);
strokeWeight(0.5);
stroke(255,92,92);
textSize(10);
text("ehi",mouseX,mouseY);
}
}
//me to space stop
function keyPressed(){
if (song.isPlaying()==true){
song.pause();
}else{
song.play();
}
}
//paizei fullscreen
function mousePressed(){
let fs=fullscreen();
fullscreen(!fs);
}
function windowResized(){
resizeCanvas(windowWidth,windowHeight);
}