Device Details

Device Overview

Name/Version: Live 2 Processing 0.4
Author: wiggle  
Description: Sends numerical audio peak data to Processing via OSC. Any program that can tap into OSC can use the data (Super Collider, etc.)

Reporting Interval = will wait 1-60 frames per second before sending next data.
Curve = define the data curve (linear, log, etc.)
Scale = define the max value for data.

The data from the left channel is labeled with varX.
The data from the right channel is labeled with varY.

You will need the OSCp5 library:
http://www.sojamo.de/libraries/oscP5/

If you have any suggestions, please comment below!

Below is the code for Processing:

------------------------------------------------

//"Live 2 Processing" Sample Code
//Taps into OSC to receive audio peak data from Live.
//Use in conjunction with Live 2 Processing (Max4Live plugin)
//by WIGGLE (www.unsound.com)
//Plugin available at: http://www.unsound.com/M4L/
//You will need the OSCp5 library: http://www.sojamo.de/libraries/oscP5/
//and controlP5 library: http://www.sojamo.de/libraries/controlP5/
//thanks: Ableton, Ash Oakenfold, Andreas Schlegel, and Casey Reas

import controlP5.*;
import oscP5.*;
import netP5.*;

ControlP5 controlP5;
Slider xSlider;
Slider ySlider;

OscP5 oscP5;
NetAddress myRemoteLocation;

int varY = round(32 / 8.0f);
int varX = round(32 / 8.0f);

void setup()
{
size(180, 150);
createSliders();
initOsc();
}

void initOsc()
{
oscP5 = new OscP5(this,8080);

myRemoteLocation = new NetAddress("127.0.0.1",8080);
oscP5.plug(this,"onX","/varX");
oscP5.plug(this, "onY", "/varY");
}


void createSliders()
{
controlP5 = new ControlP5(this);
xSlider = controlP5.addSlider("varX",
0, // min
127, // max
32, // default value
20, // x
55, // y
100, // width
10); // height

ySlider = controlP5.addSlider("varY", 0, 127, 32, 20, 75, 100, 10);
}

void draw()
{
background(0x000000);
fill(128);
rect(10, 45, 160, 50);
}

void onX(int value)
{
xSlider.setValue(value);
}

void onY(int value)
{
ySlider.setValue(value);
}
------------------------------------------------
 

Device Details

Downloads: 2062
Tags video, utility, other, hardware
Live Version Used: 8.1
Max Version Used:
Date Added: Nov 10 2009 01:53:55
Date Last Updated: Dec 05 2009 08:56:14
Average Rating -n/a-
Rate this device: (must be logged in to rate devices login)
Device Type: audio_device
URL (optional): http://www.unsound.com/
License (more info): AttributionNonCommercial

Device Files

Device File: Live2Processing04.amxd
 


Comments

so very useful for using M4L with blender's realtime 3D environment as well(using midi translator pro), thanks

Hey! Thanks so so much for this! I just started making something like it the other day to send info to jitter but yours is better, so I chopped off the peak calculator from the send object, and sent it to my jitter patch as midi instead. Keep the patches coming! Good work.

Login to comment on this device.

[ browse device library ]