Loading...
Logo
Processing Forum
dawnspectra's Profile
3 Posts
4 Responses
0 Followers

Activity Trend

Last 30 days
Show:
Private Message
    I don't know if it's my code or if my PC is sh*t. Help? Using two .wav

    1. import ddf.minim.spi.*;
    2. import ddf.minim.signals.*;
    3. import ddf.minim.*;
    4. import ddf.minim.analysis.*;
    5. import ddf.minim.ugens.*;
    6. import ddf.minim.effects.*;

    7. Minim minim;
    8. AudioPlayer mus,mus2;

    9. float w=1;
    10. float a=0;
    11. PImage gin;
    12. float p=180;

    13. void setup()
    14. {
    15.   size(800,800);
    16.   background(0);
    17.   
    18.   gin = loadImage("gin.jpg");
    19.   minim = new Minim(this);
    20.   mus = minim.loadFile("ser.wav",4096);
    21.   mus2 = minim.loadFile("l2.wav",4096);
    22. }

    23. void draw()
    24. {
    25.   stroke(255);
    26.   strokeWeight(1);
    27.    if (!mousePressed)
    28.   {
    29.     background(0);
    30.     imageMode(CENTER);
    31.     tint(255,p);
    32.      if (mouseY > 400)
    33.   {
    34.     p=p-0.5;
    35.   }
    36.   else
    37.   {
    38.     p=p+0.5;
    39.   }
    40.     image(gin,400,400);
    41.     stroke(random(255));
    42.     line(400,400,mouseX,mouseY);
    43.     if (mouseY < height/2)
    44.     {
    45.      strokeWeight(random(1,7));
    46.      stroke(random(1,128),0,255,random(0,128));
    47.      
    48.      line(800,0,random(800),random(800));
    49.      line(800,0,random(800),random(800));
    50.      line(800,0,random(800),random(800));
    51.      line(800,0,random(800),random(800));
    52.      line(800,0,random(800),random(800));
    53.      line(800,0,random(800),random(800));
    54.      line(800,0,random(800),random(800));
    55.      line(800,0,random(800),random(800));
    56.      
    57.      a=0;
    58.     }
    59.     else
    60.     {
    61.      strokeWeight(random(1,7));
    62.      stroke(255,0,random(0,128),random(0,128));
    63.      
    64.      line(0,800,random(800),random(800));
    65.      line(0,800,random(800),random(800));
    66.      line(0,800,random(800),random(800));
    67.      line(0,800,random(800),random(800));
    68.      line(0,800,random(800),random(800));
    69.      line(0,800,random(800),random(800));
    70.      line(0,800,random(800),random(800));
    71.      line(0,800,random(800),random(800)); 
    72.     } 
    73.    }
    74.    else
    75.    {
    76.     if (mouseY < height/2)
    77.     {
    78.       mus.play();
    79.     }
    80.     else
    81.     {
    82.       mus2.play();
    83.     }
    84.    strokeWeight(abs(mouseY-pmouseY)/4);
    85.    rectMode(CENTER);
    86.    rect(400,400,800,800);
    87.    fill(0,0,0,a);
    88.    a=a+1;
    89.    line(mouseX,mouseY,random(800),random(800));
    90.    line(mouseX,mouseY,random(800),random(800));
    91.    line(mouseX,mouseY,random(800),random(800));
    92.    line(mouseX,mouseY,random(800),random(800));
    93.    line(mouseX,mouseY,random(800),random(800));
    94.    line(mouseX,mouseY,random(800),random(800));
    95.    line(mouseX,mouseY,random(800),random(800));
    96.    line(mouseX,mouseY,random(800),random(800));
    97.    line(mouseX,mouseY,random(800),random(800));
    98.    line(mouseX,mouseY,random(800),random(800));
    99.        
    100.     if (mouseY < height/2 )
    101.     {
    102.       strokeWeight(w);
    103.       stroke(random(255),0,0,255);
    104.       line(400,400,mouseX,mouseY);
    105.     }
    106.     else
    107.     {
    108.       strokeWeight(w);
    109.       stroke(0,0,random(255),255);
    110.       line(400,400,mouseX,mouseY);
    111.     }
    112.    } 

    113. p=constrain(p,0,180);

    114. }

    115. void stop()
    116. {
    117.   mus.close();
    118.   minim.stop();
    119.   super.stop();
    120. }

    So I'm trying to play a sound with the Minim library. I've downloaded the lib from the web, not using the one from Processing.

    This is my code (most of it is just some simple visuals which work nice, but I can't get the sound :(

    1. Minim minim;
    2. AudioPlayer player;


    3. float w=4;
    4. float a=0;
    5. PImage gin;
    6. float p=180;


    7. void setup()
    8. {
    9.   minim = new Minim(this);
    10.   player = minim.loadFile("l1.WAV");
    11.   
    12.   size(777,777);
    13.   background(0);
    14.   smooth();
    15.   gin = loadImage("gin.jpg");
    16.   
    17.   
    18. }

    19. void draw()
    20. {
    21.   stroke(255);
    22.   strokeWeight(1);
    23.    if (!mousePressed)
    24.   {
    25.     
    26.     background(0);
    27.     imageMode(CENTER);
    28.     tint(255,p);
    29.      if (mouseY > 400)
    30.   {
    31.     
    32.     p=p-0.5;
    33.   }
    34.   else
    35.   {
    36.     p=p+0.5;
    37.   }
    38.     
    39.     image(gin,400,400);
    40.     stroke(random(255));
    41.     line(400,400,mouseX,mouseY);
    42.     if (mouseY < height/2)
    43.     {
    44.      
    45.      player.play();
    46.      
    47.      strokeWeight(random(1,7));
    48.      stroke(random(1,128),0,255,random(0,128));
    49.      
    50.      line(800,0,random(800),random(800));
    51.      line(800,0,random(800),random(800));
    52.      line(800,0,random(800),random(800));
    53.      line(800,0,random(800),random(800));
    54.      line(800,0,random(800),random(800));
    55.      line(800,0,random(800),random(800));
    56.      line(800,0,random(800),random(800));
    57.      line(800,0,random(800),random(800));
    58.      
    59.      a=0;
    60.     }
    61.     else
    62.     {
    63.      
    64.      strokeWeight(random(1,7));
    65.      stroke(255,0,random(0,128),random(0,128));
    66.      
    67.      line(0,800,random(800),random(800));
    68.      line(0,800,random(800),random(800));
    69.      line(0,800,random(800),random(800));
    70.      line(0,800,random(800),random(800));
    71.      line(0,800,random(800),random(800));
    72.      line(0,800,random(800),random(800));
    73.      line(0,800,random(800),random(800));
    74.      line(0,800,random(800),random(800));
    75.      
    76.     } 
    77.     
    78.    }
    79.    else
    80.    {
    81.    
    82.    strokeWeight(abs(mouseY-pmouseY)/4);
    83.    rectMode(CENTER);
    84.    rect(400,400,800,800);
    85.    fill(0,0,0,a);
    86.    a=a+1;
    87.    line(mouseX,mouseY,random(800),random(800));
    88.    line(mouseX,mouseY,random(800),random(800));
    89.    line(mouseX,mouseY,random(800),random(800));
    90.    line(mouseX,mouseY,random(800),random(800));
    91.    line(mouseX,mouseY,random(800),random(800));
    92.    line(mouseX,mouseY,random(800),random(800));
    93.    line(mouseX,mouseY,random(800),random(800));
    94.    line(mouseX,mouseY,random(800),random(800));
    95.    line(mouseX,mouseY,random(800),random(800));
    96.    line(mouseX,mouseY,random(800),random(800));
    97.        
    98.    /* if (mouseY < height/2 )
    99.     {
    100.       
    101.       strokeWeight(w);
    102.       stroke(random(255),0,0,255);
    103.       line(400,400,mouseX,mouseY);

    104.     }
    105.     else
    106.     {
    107.       
    108.       strokeWeight(w);
    109.       stroke(0,0,random(255),255);
    110.       line(400,400,mouseX,mouseY);
    111.     }*/
    112.     
    113.     
    114.    } 
    115. p=constrain(p,0,180);
    116. }

    117. void stop()
    118. {
    119.   player.close();
    120.   minim.stop();
    121.   super.stop();
    122. }
    Since it's really my first time trying to make sound with P, I really don't know what I'm doing. I just copied some code from the example files (those in bold), but the error I get is the following:

    Cannot find a class or type named "Minim"

    I'm a noob at this moment, so I don't know how to solve it. Any idea? Thanks!
    Basically, I want to learn this (pretty new). I have 18 yo, and I'm about to enter the university. I'm debating myself with if I should study computer eng. or software eng. or digital arts.

    What I mean, do I need to study deep engineering stuff (at the uni), or can I learn all of this by myself (and some courses and books, of course). Also wanting to learn MAX/MSP, PD, and all those cool programming stuff (oriented to the arts).

    Thanks.