Re: [PD] GEm: bug when trying macosx menubar?

2009-07-15 Thread Max

http://lists.puredata.info/pipermail/pd-list/2007-03/047966.html

Am 14.07.2009 um 22:50 schrieb servando barreiro:


Hey Max!

 the problem was  that when u destroy the menubar and create a  
fullscreen gemwin, you loose mac keystrokes like command+tab, command 
+q ctrl+cmd+esc   or anything useful to go back and change the  
patch.. (maybe a bug?) the problm was before discovering  
[gemkeyboard], now the job is done  but I really had to spend some  
time making different combinations in the hierarchy of the messages  
for gemwin.


Now i have a mac mini that you handle only with the on/off button  
(you even doesnt need mouse or keyb) and runs the audiovisual  
installation itself. (w infrared sens included)


I did closed the topic already..

Thank you for your attention!

SErvando

--- El mar, 14/7/09, Max abonneme...@revolwear.com escribió:

De: Max abonneme...@revolwear.com
Asunto: Re: [PD] GEm: bug when trying macosx menubar?
Para: servando barreiro servandi...@yahoo.es
CC: pd-list@iem.at
Fecha: martes, 14 julio, 2009 6:42

what kind of problem with the keyboard?
it helps to be a little bit more specific.

Am 14.07.2009 um 15:08 schrieb servando barreiro:


 Hello!

 I´m making an installation that starts and goes fullscreen on  
macosX  but I´m finding strange behaviours  in the message  
[menubar(  to gemwin.  It´s suposed to make the bar dissapear but  
instead of that, gives problem w the keyboard..


 any tip?

 thanks

 Ser

 i...@minitronics.net

 ___
 Pd-list@iem.at mailing list
 UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list






PGP.sig
Description: Signierter Teil der Nachricht
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] How to exchange tables between different instances of pd in real time?

2009-07-15 Thread Max


Am 14.07.2009 um 21:19 schrieb Martin Schied:
@Frank: Thanks for that suggestion but I couldn't find mails in the  
list saying that pd~ did the job for Max Neupert. In fact his only  
mail I could find was about pd~ not working some time ago..?


it does work nicely. i think it's the way how to split audio and video  
in two separate processes to avoid interference.


PGP.sig
Description: Signierter Teil der Nachricht
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] external glitch with jack not with alsa why?

2009-07-15 Thread patrick

hi all,

i have this external that use libusb. everything is fine if i use alsa, 
but when using jack every usb poll i get a glitch. why? would it be 
possible to avoid this glitch? is this a threading issue? why this 
external is affecting the dsp of pd?


pat

#include m_pd.h
#include usb.h
#include stdio.h
#include stdlib.h
#include string.h

// ==
// Constants
// --
#define USBDEV_SHARED_VENDOR	0x16c0  /* VOTI */
#define USBDEV_SHARED_PRODUCT   	0x05dc  /* Obdev's free shared PID */
#define OUTLETS 	17
#define DEFAULT_CLOCK_INTERVAL		10		// Magic number 6 (with alsa, under 6 = glitch)
#define USBREPLYBUFFER 21

// ==
// Our External's Memory structure
// --
typedef struct _edubeat// defines our object's internal variables for each instance in a patch
{
	t_object 		p_ob;	// object header - ALL pd external MUST begin with this...
	usb_dev_handle	*dev_handle;			// handle to the edubeat usb device
	void			*m_clock;// handle to our clock
	double 			m_interval;// clock interval for polling edubeat
	double 			m_interval_bak;			// backup clock interval for polling edubeat
	intis_running;// is our clock ticking?
	void 			*outlets[OUTLETS];		// handle to the objects outlets
	int 			values[10];// stored values from last poll /
} t_edubeat;

void *edubeat_class;	// global pointer to the object class - so pd can reference the object 


// ==
// Function Prototypes
// --
void *edubeat_new(t_symbol *s);
void edubeat_assist(t_edubeat *x, void *b, long m, long a, char *s);
void edubeat_bang(t_edubeat *x);
void edubeat_close(t_edubeat *x);
void edubeat_int(t_edubeat *x, t_floatarg n);
void edubeat_open(t_edubeat *x);
void edubeat_poll(t_edubeat *x, t_floatarg n);
void edubeat_start(t_edubeat *x);
void edubeat_stop(t_edubeat *x);

// functions used to find the USB device
static int  	usbGetStringAscii(usb_dev_handle *dev, int index, int langid, char *buf, int buflen);
void 			find_device(t_edubeat *x);


//--
// - Message: bang  - poll edubeat
//--
void edubeat_bang(t_edubeat *x)	// poll edubeat
{
	int nBytes,i,n;
	int replymask,replyshift,replybyte;
	int	temp;
	unsigned char   buffer[USBREPLYBUFFER];
	
	if (!(x-dev_handle)) find_device(x);
	else {
			// ask edubeat to send us data
			nBytes = usb_control_msg(x-dev_handle, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_IN, 
		EDUBEAT_CMD_POLL, 0, 0, (char *)buffer, sizeof(buffer), 10);
			
			for (i = 0; i  OUTLETS; i++) {
outlet_float(x-outlets[i], buffer[i]);
			}
	}
}

//--
// - Message: poll 		- set polling interval
//--
void edubeat_poll(t_edubeat *x, t_floatarg n){
	if (n  0) { 
		x-m_interval = n;
		x-m_interval_bak = n;
		edubeat_start(x);
	} else {
		edubeat_stop(x);
	}
}

//--
// - Message: open 		- open connection to edubeat
//--
void edubeat_open(t_edubeat *x)
{
	if (x-dev_handle) {
		post(There is already a connection to Edubeat, 0);
	} else find_device(x);
}

//--
// - Message: close 	- close connection to edubeat
//--
void edubeat_close(t_edubeat *x)
{
	if (x-dev_handle) {
		usb_close(x-dev_handle);
		x-dev_handle = NULL;
		post(Closed connection to Edubeat,0);
	} else
		post(There was no open connection to Edubeat,0);
}

//--
// - Message: int 		- zero stops / nonzero starts
//--
void edubeat_int(t_edubeat *x, t_floatarg n) {
	if (n) {
		if (!x-is_running) edubeat_start(x);
	} else {
		if (x-is_running) edubeat_stop(x);
	}
}

//--
// - Message: start 	- start automatic polling
//--
void edubeat_start (t_edubeat *x) { 
	if (!x-is_running) {
		clock_delay(x-m_clock,0.);
		x-is_running  = 1;
	}
} 


Re: [PD] How to exchange tables between different instances of pd in real time?

2009-07-15 Thread cyrille henry



Max a écrit :


Am 14.07.2009 um 21:19 schrieb Martin Schied:
@Frank: Thanks for that suggestion but I couldn't find mails in the 
list saying that pd~ did the job for Max Neupert. In fact his only 
mail I could find was about pd~ not working some time ago..?


it does work nicely. i think it's the way how to split audio and video 
in two separate processes to avoid interference.

no, it will not avoid interference.
it's the way to go if you have a dual core computer and wish do dedicated 1 
core for the audio, and 1 core (+ GPU) for the images rendering.
but since the 2 pd instance are synchronised at audio rate, if the video 
processing is using more then 100% of a CPU, then it will slow down both pd 
instance and you should then ear click on the audio.

to avoid interference, you should use 2 pd, and connect them via netsend.

Cyrille








___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] HID problem in Xubuntu.

2009-07-15 Thread Diego Azar
Hi,

I'm trying to use de hid librari in Xubuntu.
I installed pd-hid.deb package without trouble and everything works perfect 
(usb mouse, keyboard, etc) except for the touchpad. It's not a permission 
issue, i've already gave permission to /dev/input/event0-9 and 
/dev/input/mouse0-2.

In my laptop the touchpad is located in /dev/input/event8, and when I give the 
[hid] object the message [open 8(, the console gives this result: evdev 
EVIOCGABS ioctl: Invalid argument and hid don't output any value.

I searched in the list archives but couldn't find any help. It was a message 
reporting a similar problem with a tablet but the replies didn't work for me.

thanks,

Diego.






  ___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] GEm: bug when trying macosx menubar?

2009-07-15 Thread IOhannes m zmoelnig

Max wrote:

http://lists.puredata.info/pipermail/pd-list/2007-03/047966.html

Am 14.07.2009 um 22:50 schrieb servando barreiro:


Hey Max!

 the problem was  that when u destroy the menubar and create a 
fullscreen gemwin, you loose mac keystrokes like command+tab, 
command+q ctrl+cmd+esc   or anything useful to go back and change the 
patch.. (maybe a bug?) the problm was before discovering 
[gemkeyboard], now the job is done  but I really had to spend some 
time making different combinations in the hierarchy of the messages 
for gemwin.


btw, i would consider this a _feature_ rather than a _bug_ (if you want 
kiosk mode, then people should not be able to simply switch from the 
output-window to an arbitrary application in the background and hack 
your computer :-))


fgmasdr
IOhannes


smime.p7s
Description: S/MIME Cryptographic Signature
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] HID problem in Xubuntu.

2009-07-15 Thread Simon Wise

Diego Azar wrote:

Hi,

I'm trying to use de hid librari in Xubuntu.
I installed pd-hid.deb package without trouble and everything works 
perfect (usb mouse, keyboard, etc) except for the touchpad. It's not a 
permission issue, i've already gave permission to /dev/input/event0-9 
and /dev/input/mouse0-2.


is your touchpad a USB HID device?

Simon

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] guitare à crayon

2009-07-15 Thread patrick

hi everyone,

i have something new to share, it's a project called guitare à crayon. 
it's a custom usb guitar with a tablet on it. i am using pure data (for 
dsp) and gimp (for visual).


http://www.workinprogress.ca/projects/guitare-a-crayon/

cheers
pat




___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] How to exchange tables between different instances of pd in real time?

2009-07-15 Thread Max


Am 15.07.2009 um 11:05 schrieb cyrille henry:

Max a écrit :

Am 14.07.2009 um 21:19 schrieb Martin Schied:
@Frank: Thanks for that suggestion but I couldn't find mails in  
the list saying that pd~ did the job for Max Neupert. In fact his  
only mail I could find was about pd~ not working some time ago..?
it does work nicely. i think it's the way how to split audio and  
video in two separate processes to avoid interference.

no, it will not avoid interference.
it's the way to go if you have a dual core computer and wish do  
dedicated 1 core for the audio, and 1 core (+ GPU) for the images  
rendering.
but since the 2 pd instance are synchronised at audio rate, if the  
video processing is using more then 100% of a CPU, then it will slow  
down both pd instance and you should then ear click on the audio.


true. to avoid that slow down the framerate dynamically if cpu usage  
is approaching 100% in the rendering process.


to avoid interference, you should use 2 pd, and connect them via  
netsend.


that did the job but there are some difficulties with that approach:  
if an instance with netserver crashes the port will be blocked for  
some time.


max

PGP.sig
Description: Signierter Teil der Nachricht
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] Gem blackmagic/QuickTime/OSX problems (?)

2009-07-15 Thread IOhannes m zmoelnig

hi

a composer for whom i did a bit of programming, is currently 
experiencing problems with his setup.



he is using:
+ software
 - MacOSX 10.5.7
 - QuickTime 7.6.2
 - Pd-0.41, Gem
+ hardware
 - blackmagic hdmi-capture card (that's currently all i know about this 
card



no his problem is, that he is not able to configure the decie correctly 
via the grabber-settings [dialog(

(that is: he is unable to select input-format and input-device;
whatever he get's via firewire(sic!) looks ugly)

now the question is: are there any known problems with newer quicktime 
and/or blackmagic cards?


mfgasr
IOhannes

PS: i really don't know much about this. i haven't seen the computer, 
the card, the grabber-dialog nor the output. probably he'll tell me more 
 :-)


smime.p7s
Description: S/MIME Cryptographic Signature
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] GEm: bug when trying macosx menubar?

2009-07-15 Thread Max


Am 15.07.2009 um 12:15 schrieb IOhannes m zmoelnig:

Max wrote:

http://lists.puredata.info/pipermail/pd-list/2007-03/047966.html
Am 14.07.2009 um 22:50 schrieb servando barreiro:

Hey Max!

the problem was  that when u destroy the menubar and create a  
fullscreen gemwin, you loose mac keystrokes like command+tab,  
command+q ctrl+cmd+esc   or anything useful to go back and change  
the patch.. (maybe a bug?) the problm was before discovering  
[gemkeyboard], now the job is done  but I really had to spend  
some time making different combinations in the hierarchy of the  
messages for gemwin.


btw, i would consider this a _feature_ rather than a _bug_ (if you  
want kiosk mode, then people should not be able to simply switch  
from the output-window to an arbitrary application in the background  
and hack your computer :-))


agreed. plus it's easy to prevent with

[gemkeyboard]
|
[sel 12]
|
[destroy(
|
[gemwin]


(press q)

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] How to exchange tables between different instances of pd in real time?

2009-07-15 Thread cyrille henry



Max a écrit :

that did the job but there are some difficulties with that approach: if 
an instance with netserver crashes the port will be blocked for some time.



i'm using vanilla pd / Gem and 2 or 3 other external on linux for many years 
now. everything there is very stable. crash is not an option.
c


max


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] How to exchange tables between different instances of pd in real time?

2009-07-15 Thread cyrille henry



Max a écrit :





true. to avoid that slow down the framerate dynamically if cpu usage is 
approaching 100% in the rendering process.




or simplify the rendering processing if like me you are a fanatic of 50fps.

c

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Gem blackmagic/QuickTime/OSX problems (?)

2009-07-15 Thread chris clepper
I had to add some messages to pix_video to get the Blackmagic cards working
at all.  They only show up as one device with several inputs.  Try a message
like 'device 3, input 2' to configure the thing.  Count how far down it is
in the 'dialog' device window for the device number and then whatever input
is under the Blackmagic device.  It's kind of a pain to deal with these
cards, but they are really cheap for HD capture.

Also he shouldn't get anything with the 'firewire' device if he's using the
Blackmagic card.  Can you find out what the camera is and how it is
connected?


On Wed, Jul 15, 2009 at 6:31 AM, IOhannes m zmoelnig zmoel...@iem.atwrote:

 hi

 a composer for whom i did a bit of programming, is currently experiencing
 problems with his setup.


 he is using:
 + software
  - MacOSX 10.5.7
  - QuickTime 7.6.2
  - Pd-0.41, Gem
 + hardware
  - blackmagic hdmi-capture card (that's currently all i know about this
 card


 no his problem is, that he is not able to configure the decie correctly via
 the grabber-settings [dialog(
 (that is: he is unable to select input-format and input-device;
 whatever he get's via firewire(sic!) looks ugly)

 now the question is: are there any known problems with newer quicktime
 and/or blackmagic cards?

 mfgasr
 IOhannes

 PS: i really don't know much about this. i haven't seen the computer, the
 card, the grabber-dialog nor the output. probably he'll tell me more  :-)

 ___
 Pd-list@iem.at mailing list
 UNSUBSCRIBE and account-management -
 http://lists.puredata.info/listinfo/pd-list


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Gem blackmagic/QuickTime/OSX problems (?)

2009-07-15 Thread IOhannes m zmoelnig

hi.

chris clepper wrote:

I had to add some messages to pix_video to get the Blackmagic cards working
at all.  They only show up as one device with several inputs.  Try a message
like 'device 3, input 2' to configure the thing.  Count how far down it is
in the 'dialog' device window for the device number and then whatever input
is under the Blackmagic device.  It's kind of a pain to deal with these
cards, but they are really cheap for HD capture.


thanks for the quick response. i'll forward this to him



Also he shouldn't get anything with the 'firewire' device if he's using the
Blackmagic card.  Can you find out what the camera is and how it is
connected?



right, i wondered as well.
i have already asked the same questions, but he hasn't replied yet :-)


fgamsdr
IOhannes


smime.p7s
Description: S/MIME Cryptographic Signature
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] help needed: broadcast mode netsend(~) over UDP (from Mac OSX)

2009-07-15 Thread Nicholas Mariette

hi,

Can anyone advise on whether it's possible to do UDP broadcast (e.g.  
to 255.255.255.255 or more limited IP ranges) from netsend~ (by Olaf  
Matthes), or even netsend or other network objects?


I've tried this and have not had any luck.
I get this error:
connecting stream socket: Permission denied (13)

I then looked at the code of netsend~.
I'm using an updated version available (with source) at:
http://www.remu.fr/sound-delta/netsend~/

After some googling around about the (13) error, I tried setting  
SO_BROADCAST, which it seems might be necessary to enable broadcast  
mode.

This didn't help - I still get the permission denied message.

I have then tried several other network objects, like netsend (control  
data version), and have had no luck.
If I could get any of these going in broadcast mode, I might be able  
to modify code to make something work.


I've found some Pd list posts about broadcast working, but haven't  
been able to duplicate these results.

e.g.
http://markmail.org/thread/6bjcfzblukbynchp

I've been working on a simple 192.168.x.x network between 2 computers,  
with direct message sending working without problems.


I think I'm stuck for further ideas to get broadcast working...

Can anyone suggest a solution - or even a next move?!

cheers
Nick

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] help needed: broadcast mode netsend(~) over UDP (from Mac OSX)

2009-07-15 Thread Nicholas Mariette

Here's a link to that thread about the SO_BROADCAST option...
http://markmail.org/message/s5xygbsbke5ly4bp
Nick


On Jul 15, 2009, at 5:40 PM, Nicholas Mariette wrote:


hi,

Can anyone advise on whether it's possible to do UDP broadcast (e.g.  
to 255.255.255.255 or more limited IP ranges) from netsend~ (by Olaf  
Matthes), or even netsend or other network objects?


I've tried this and have not had any luck.
I get this error:
connecting stream socket: Permission denied (13)

I then looked at the code of netsend~.
I'm using an updated version available (with source) at:
http://www.remu.fr/sound-delta/netsend~/

After some googling around about the (13) error, I tried setting  
SO_BROADCAST, which it seems might be necessary to enable broadcast  
mode.

This didn't help - I still get the permission denied message.

I have then tried several other network objects, like netsend  
(control data version), and have had no luck.
If I could get any of these going in broadcast mode, I might be able  
to modify code to make something work.


I've found some Pd list posts about broadcast working, but haven't  
been able to duplicate these results.

e.g.
http://markmail.org/thread/6bjcfzblukbynchp

I've been working on a simple 192.168.x.x network between 2  
computers, with direct message sending working without problems.


I think I'm stuck for further ideas to get broadcast working...

Can anyone suggest a solution - or even a next move?!

cheers
Nick


Nicholas Mariette

Researcher
Audio and Acoustics group
LIMSI-CNRS, Orsay, France
http://www.limsi.fr/Scientifique/aa/
http://www.limsi.fr/Scientifique/ps/thmsonesp/SonEspace
http://soundsorange.net
nicholas.marie...@limsi.fr





___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] HID problem in Xubuntu.

2009-07-15 Thread Diego Azar
Hi Simon,

Thanks for the fast response. No, it isn't. It's the standard  synaptic 
touchpad that comes with many laptops. 

Diego.

--- On Wed, 7/15/09, Simon Wise simonzw...@gmail.com wrote:

From: Simon Wise simonzw...@gmail.com
Subject: Re: [PD] HID problem in Xubuntu.
To: Diego Azar dazar...@yahoo.com
Cc: PD-List pd-list@iem.at
Date: Wednesday, July 15, 2009, 11:14 AM

Diego Azar wrote:
 Hi,
 
 I'm trying to use de hid librari in Xubuntu.
 I installed pd-hid.deb package without trouble and everything works perfect 
 (usb mouse, keyboard, etc) except for the touchpad. It's not a permission 
 issue, i've already gave permission to /dev/input/event0-9 and 
 /dev/input/mouse0-2.

is your touchpad a USB HID device?

Simon



  ___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] Recieving OSC / Wiimote

2009-07-15 Thread Uluğ Can Kazaz
   Hello everyone, i'm a new subscriber to the list.

I've been  working on sending OSC messages to PD using GlovePie on Windows.
I found a script for GlovePie that perceives and sends OSC messages via
Wiimote. At last i accomplished it with [dumpOSC] object but it's receiving
the messages as packs. Is there another way to receive OSC or unpack the
messages?

-- 
U. Can KAZAZ
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] [PD-announce] Pure Data Focus Group, with Natacha Diels, Tuesday, July 21, 4-6pm

2009-07-15 Thread Hans-Christoph Steiner


I think they'll let non-Columbia people in if you ask nicely.  Also,  
if you have other NYC university IDs, they'll probably let you in  
without a special pass.  My NYU ID worked, for example.


.hc

Begin forwarded message:


From:library libr...@exchange.tc.columbia.edu
Date:July 15, 2009 10:49:53 AM EDT
Subject:Invitation: Pure Data Focus Group, with Natacha Diels,  
Tuesday, July 21, 4-6pm


The Gottesman Libraries invitesyou to attenda

 Pure Data Workshop

Led by Natacha Diels, Flautist  Composer

Tuesday, July 21, 4:00 - 6:00 pm

The Gottesman Libraries
Room 305
Teachers College,ColumbiaUniversity
525 West 120th Street

 RSVP by Friday, July 17 tolibr...@tc.edu

Flautist and composerNatacha Dielswas born inLos Angelesin 1981 and  
spent most of her childhood inNew Mexico. She holds a BM in flute  
performance fromNew YorkUniversityand a MPS from the Interactive  
Telecommunications program atTischSchoolof the Arts,New  
YorkUniversity.


In 2002 Natacha founded the new music group Ensemble Pamplemousse  
(non-profit inc. 2004), with the purpose of commissioning and  
performing electroacoustic works for chamber ensemble. Natacha also  
performs in contemporary, classical, and improvised contexts,  
including such ensembles as On Stucture, Tall Brown Boots, and Red  
Light New Music. She has participated as performer and composer in  
new music and art festivals all over the world. Natacha is dedicated  
to helping others incorporate technology and music and has taught  
workshops at the School of the Art Institute of Chicago; the  
Montessori School of Raleigh; the Upper Catskill Community Center  
for the Arts; and Hartwick College. She is currently developing a  
Montessori program in contemporary music with Corinne Sigel.


This workshop is co-sponsored by the Gottesman Libraries and New  
Blankets, a non profit organization spear-headed byJoseph Dekenof  
theUniversityofCalifornia San Diegoto develop new collaborative  
technologies and innovative projects. For this workshop you may  
bring your own laptop and headphones, or use equipment provided by  
the Gottesman Libraries. Please note that seating is limited fifteen  
persons.


Individuals with disabilities are invited to request reasonable  
accommodations including, but not limited to sign language  
interpretation, Braille or large print materials, and a campus map  
of accessible features. Address these requests to the Office of  
Access and Services for Individuals with Disabilities at (212)  
678-3689,kel...@tc.edu, or Deaf and Hard of Hearing Services at  
(212) 678-3853 V/TTY,ja...@tc.edu.


http://library.tc.columbia.edu/news.php?id=459






[W]e have invented the technology to eliminate scarcity, but we are  
deliberately throwing it away to benefit those who profit from  
scarcity.-John Gilmore




___
Pd-announce mailing list
pd-annou...@iem.at
http://lists.puredata.info/listinfo/pd-announce

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Recieving OSC / Wiimote

2009-07-15 Thread Marco Donnarumma
Hi,
you can use [unpackOSC] after [dumpOSC]
But i suggest to follow this really recent discussion on Pd list to get a
full overview of the OSC topic:

http://www.mail-archive.com/pd-list@iem.at/msg27266.html

cheers


Marco




   Hello everyone, i'm a new subscriber to the list.

 I've been  working on sending OSC messages to PD using GlovePie on Windows.
 I found a script for GlovePie that perceives and sends OSC messages via
 Wiimote. At last i accomplished it with [dumpOSC] object but it's receiving
 the messages as packs. Is there another way to receive OSC or unpack the
 messages?

 --
 U. Can KAZAZ


-- 
Marco Donnarumma aka The !S.A.D!



Multimedia Artist, Live Performer - Roma, IT

LAB: http://www.thesaddj.com | http://www.flxer.net

EVENT: http://www.liveperformersmeeting.net
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Recieving OSC / Wiimote

2009-07-15 Thread Uluğ Can Kazaz
When i use [unpackOSC] after [dumpOSC], PD gives an error: unpackOSC: no
method for '/'




On Wed, Jul 15, 2009 at 8:50 PM, Marco Donnarumma de...@thesaddj.comwrote:

 Hi,
 you can use [unpackOSC] after [dumpOSC]
 But i suggest to follow this really recent discussion on Pd list to get a
 full overview of the OSC topic:

 http://www.mail-archive.com/pd-list@iem.at/msg27266.html

 cheers


 Marco



-- 
U. Can KAZAZ
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] HID problem in Xubuntu.

2009-07-15 Thread Hans-Christoph Steiner


Chances are that the trackpad is an USB device, but just internal.   
But I don't think that's the issue.  I think in recent versions of  
Ubuntu, the X server or related process grabs the keyboard and mice  
using exclusive access.  You have to tell the X server to not use the  
mice that you want to use with [hid].  Check the archives, there is  
quite a bit of discussion about it.  It would be great to have a wiki  
page about this...


.hc

On Jul 15, 2009, at 12:26 PM, Diego Azar wrote:


Hi Simon,

Thanks for the fast response. No, it isn't. It's the standard   
synaptic touchpad that comes with many laptops.


Diego.

--- On Wed, 7/15/09, Simon Wise simonzw...@gmail.com wrote:

From: Simon Wise simonzw...@gmail.com
Subject: Re: [PD] HID problem in Xubuntu.
To: Diego Azar dazar...@yahoo.com
Cc: PD-List pd-list@iem.at
Date: Wednesday, July 15, 2009, 11:14 AM

Diego Azar wrote:
 Hi,

 I'm trying to use de hid librari in Xubuntu.
 I installed pd-hid.deb package without trouble and everything  
works perfect (usb mouse, keyboard, etc) except for the touchpad.  
It's not a permission issue, i've already gave permission to /dev/ 
input/event0-9 and /dev/input/mouse0-2.


is your touchpad a USB HID device?

Simon

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list








Free software means you control what your computer does. Non-free  
software means someone else controls that, and to some extent controls  
you. - Richard M. Stallman



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] Argentina

2009-07-15 Thread Gabriel Vinazza
Hi everybody!  I would like to make contact with anybody using Pd, or
Pd groups/activities in Argentina...

Well, that's it... Regards =)

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] HID problem in Xubuntu.

2009-07-15 Thread Phil Stone
I have a similar, but slightly different, problem on OS X  (10.4, 
Macbook pro).  A Logitech Marble Mouse (trackball) shows up as device 0, 
but I can't get any data out of it.  The trackpad, on the other hand, is 
fully accessible through [hid].  Any ideas?



Phil



Hans-Christoph Steiner wrote:


Chances are that the trackpad is an USB device, but just internal. 
 But I don't think that's the issue.  I think in recent versions of 
Ubuntu, the X server or related process grabs the keyboard and mice 
using exclusive access.  You have to tell the X server to not use the 
mice that you want to use with [hid].  Check the archives, there is 
quite a bit of discussion about it.  It would be great to have a wiki 
page about this...


.hc

On Jul 15, 2009, at 12:26 PM, Diego Azar wrote:


Hi Simon,

Thanks for the fast response. No, it isn't. It's the standard  
synaptic touchpad that comes with many laptops.


Diego.

--- On *Wed, 7/15/09, Simon Wise /simonzw...@gmail.com 
mailto:simonzw...@gmail.com/* wrote:



From: Simon Wise simonzw...@gmail.com mailto:simonzw...@gmail.com
Subject: Re: [PD] HID problem in Xubuntu.
To: Diego Azar dazar...@yahoo.com mailto:dazar...@yahoo.com
Cc: PD-List pd-list@iem.at mailto:pd-list@iem.at
Date: Wednesday, July 15, 2009, 11:14 AM

Diego Azar wrote:
 Hi,

 I'm trying to use de hid librari in Xubuntu.
 I installed pd-hid.deb package without trouble and everything
works perfect (usb mouse, keyboard, etc) except for the touchpad.
It's not a permission issue, i've already gave permission to
/dev/input/event0-9 and /dev/input/mouse0-2.

is your touchpad a USB HID device?

Simon


___
Pd-list@iem.at mailto:Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list








Free software means you control what your computer does. Non-free 
software means someone else controls that, and to some extent controls 
you. - Richard M. Stallman





___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list
  



___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Recieving OSC / Wiimote

2009-07-15 Thread Marco Donnarumma
Maybe you are missing an argument after the /
you should have something like:

[dumpOSC]
|
[unpackOSC /testone /testtwo]
|   \
.

This is how these objects normally work, but I don't know which are the
arguments sent out by the wiimote and/or your script.


M





On Wed, Jul 15, 2009 at 8:26 PM, Uluğ Can Kazaz ucka...@gmail.com wrote:



 When i use [unpackOSC] after [dumpOSC], PD gives an error: unpackOSC: no
 method for '/'




 On Wed, Jul 15, 2009 at 8:50 PM, Marco Donnarumma de...@thesaddj.comwrote:

 Hi,
 you can use [unpackOSC] after [dumpOSC]
 But i suggest to follow this really recent discussion on Pd list to get a
 full overview of the OSC topic:

 http://www.mail-archive.com/pd-list@iem.at/msg27266.html

 cheers


 Marco



 --
 U. Can KAZAZ




-- 
Marco Donnarumma aka The !S.A.D!



Multimedia Artist, Live Performer - Roma, IT

LAB: http://www.thesaddj.com | http://www.flxer.net

EVENT: http://www.liveperformersmeeting.net
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Recieving OSC / Wiimote

2009-07-15 Thread Uluğ Can Kazaz
Allright, that should work. Thanks for your help.

On Wed, Jul 15, 2009 at 10:34 PM, Marco Donnarumma de...@thesaddj.comwrote:

 Maybe you are missing an argument after the /
 you should have something like:

 [dumpOSC]
 |
 [unpackOSC /testone /testtwo]
 |   \
 .

 This is how these objects normally work, but I don't know which are the
 arguments sent out by the wiimote and/or your script.


 M







-- 
U. Can KAZAZ
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Recieving OSC / Wiimote

2009-07-15 Thread martin.peach


___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] why do [bp~] and [vcf~] sound different?

2009-07-15 Thread Frank Barknecht
Hallo,
Ichabod hat gesagt: // Ichabod wrote:

 So basically what I want to know is: if I have a vcf~ with a given q and
 constant center frequency, is there a way to replace it more cheaply?

I don't fully grok the method used in vcf~, but if you want to have
consistent filters with reproducable algorithms, you could build filters with
the elementary filter objects provided in Pd, i.e.  rzero~, rpole~, czero~ and
cpole~ or biquad~. Then the filter program is in the diagram. 

Common methods to design filters are the Filter-EQ-Cookbok and J.O. Smith's
filter/dsp website. The rj-library http://trac.rjdj.me/wiki/RjLibnew includes
some helpers for this.

Ciao
-- 
Frank

___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] Recieving OSC / Wiimote

2009-07-15 Thread Martin Peach

Uluğ Can Kazaz wrote:



When i use [unpackOSC] after [dumpOSC], PD gives an 
error: unpackOSC: no method for '/'  






That's because [unpackOSC] expects a stream of bytes from something like 
[udpreceive].


I think you should use
[udpreceive]
|
[unpackOSC]
|
[routeOSC /something /else]

See doc/5.reference/mrpeach/routeOSC-help.pd

Or (deprecated):

[dumpOSC]
|
[route /something /else]


Martin





___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list