Hi,
I'm writing a spatialisation patch for 3 or 4 sound sources. I didn't
found the way to control them with a unique vbap object, as ambiencode
does... I think it's not possible, but I ask just to be sure.
thank you
r
Hello,
I am working on a patch in which i use [TuioClient] with Pd-extended 0.43.4
When i open this patch, i get in the Pd console :
Invalid command name 'listening'
while executing
"listening to TUIO messages on UDP port 3333"
("uplevel" body line 1)
invoked from within
"uplevel #0 $cmds_from_pd"
Then, very often, there is no GUI and i can't use the patch.
How I can make this patch work (attached) all the time for an
installation (with TuioClient.pd_darwin from tuio.org) ?
My configuration :
MacMini with MacOSX.7.5
Pd-extended 0.43.4
Thanx.
++
Jack
FYI, best, P
----------------------------8<-----------------------------------
University Assistant Position @ KUG, AUSTRIA
Interdisciplinary research on spatial organ sound generation and
analysis thereof, in terms of artistically aesthetics, sound design and
perceptual evaluation.
The University of Music and Performing Arts Graz, Austria, announces a
vacant position at the Institute of Church Music and Organ, for a
University Assistant
according to §26 of the current Austrian academic wage agreements. The
employment contract is for a 75% part-time employee and for a period of
four years. The minimal monthly gross payment for the vacant 75%
position is currently € 1.899,-- (14 x annually). Increased salary for
persons with specific professional experience is according to the wage
agreements (http://www.goed.at/documents/kv_uni_Internet.pdf).
General Application Requirements:
Master (Diploma) degree preferably in Electrical Engineering and Audio
Engineering, or equal experience in independent scientific research.
Specific Application Requirements:
The applicant has comprehensive practical experience in audio recording
techniques. Main area of interest implies musical acoustics and sound
aesthetics. Knowledge of organ making is desirable. Moreover, profound
background knowledge in acoustical signal processing, electro acoustics,
room acoustics and psycho-acoustics are expected. Furthermore, your
abilities should comprise comprehensively programming skills in MATLAB,
Pure Data (PD) and/or C as well as self-management.
Candidates with proper qualifications who meet the required expertise
and skills are invited to send their written application along with
commonly required documents (curriculum vitae, short description of
expertise, and preferably a letter of recommendation with name and
address of the author from the academic world - (physical/e-mail/FAX) by
23. April 2013
Under the document code GZ: 25/13 to the following address: An das
Personalservice der Universität für Musik und darstellende Kunst Graz,
8010 Graz, Leonhardstraße 15.
The university encourages qualified women to apply for the vacant job.
Women with comparable qualification will be treated with higher priority.
Job interviews will take place soon after the application deadline. The
employment should start as early as possible. Travel costs and
accommodation that might arise during the application procedure will not
be refunded by the university.
In accordance with the university's social sustainability guidelines
that interpret special needs in all aspects, people with special needs
and given comparable qualification will be preferred in the application
procedure.
Hi,
for info:
For those who doesn't want pd auto-connect to jack (for use with
qjackctl patchbay or ladish), there is the "no-self-connect" patch from
Nedko Arnaudov (for jack2). Check if the package from your distro
compile jack with it, or you'll have to compile yourself (git branch or
download it):
http://nedko.arnaudov.name/blog/2012/12/19/jack-1.9.9.5-no-self-connect-pat…
related feature request:
http://sourceforge.net/tracker/?func=detail&aid=3519504&group_id=55736&atid…
KXstudio (or just kxstudio repositories), implement it inthe great jack
manager Cadence: you can choose to prevent apps self connecting to
system ports, or to any ports.
you can then use pd with ladish, (add an app with command "pd-extended",
followed by the path and file name you need to open). All your
connections will be saved and no need to disconnectall first.
enjoy it
r
Greetings.Â
After 2 years of gestation, the Ninja Jamm iPhone app is finally released, running my Pure Data audio engine in libPd.
This iPhone app requires iOS 5 or 6, iPhone 4/iPad 2 or better. The app is now available in the itunes store.
Enjoy!
Ed Kelly
Â
Gemnotes-0.2: Live music notation for Pure Data, now with dynamics!
http://sharktracks.co.uk/
_______________________________________________
Pd-announce mailing list
Pd-announce(a)iem.at
http://lists.puredata.info/listinfo/pd-announce
On 15/04/13 16:29, nachoen82(a)gmail.com wrote:
> Hi Chris. Now, with the new update, it works perfect.
Rock and roll!
Also had a report it's working on the Samsung Galaxy Note now.
Cheers,
Chris.
--
http://mccormick.cx/
When trying to load the mknob GUI/object instead of the object I get the
qlist instead. How do i make it so the mknob appears like the for example,
hslider which opens automatically within the program without having to open
the helpfile under moonlib to get mknob to respond
Hi all,
I'm having some troubles with two pd instances and [shell].
I launch a patch with the first Pd instance from the terminal. Here, i use
[shell] to create a new patch and open it with a second Pd instance.
when the new patch is loaded, it sends a [quit( message to [noquit] to the
first pd-instance patch, via OSC, in order to kill it.
everything works fine until the first instance receive the OSC message. At
this point, the pd process is killed but the GUI freezes on the screen, and
the terminal freezes too.
If I launch the first Pd instance from the terminal with '&', and then run
the script through
the same terminal, it works fine.
this below is the script. nothing fancy.
any idea why the process doesn't work?
thanksss!
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
#!/bin/bash
NEWPATCH=$1
cp /usr/share/Xth-Sense/Xth-Sense.pd $HOME/Desktop/$NEWPATCH.pd;
sleep 2;
pdextended -alsa $HOME/Desktop/$NEWPATCH.pd;
exit
\\\\\\\\\\\\\\\\\\
--
Marco Donnarumma
New Media + Sonic Arts Practitioner, Performer, Teacher, Director.
Embodied Audio-Visual Interaction Research Team.
Department of Computing, Goldsmiths University of London
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Portfolio: http://marcodonnarumma.com
Research: http://res.marcodonnarumma.com
Director: http://www.liveperformersmeeting.net
Hi Marco,
I read the source code of this external* and it works with a fork. It
means that we have a parent process, your first PD instance, and a child
process, the shell that created your second PD instance. AFAIK it is not
possible to kill the parent process and keep the child running. The child
is the shell and your second PD instance depends on this process to run.
It's possible to run a child without a parent but [shell] should use a
nohup or something like that. Since this external doesn't seem to have it
implemented, I don't think that it will be possible.
Schiavoni
P.S.: Reading the source code I discovered that this object accept a bang
message that prints "bang". It also has an unused static variable
"shell_pid"...
*
http://pure-data.svn.sourceforge.net/viewvc/pure-data/trunk/externals/ggee/…
> Hi all,
>
> I'm having some troubles with two pd instances and [shell].
>
> I launch a patch with the first Pd instance from the terminal. Here, i use
> [shell] to create a new patch and open it with a second Pd instance.
>
> when the new patch is loaded, it sends a [quit( message to [noquit] to the
> first pd-instance patch, via OSC, in order to kill it.
>
> everything works fine until the first instance receive the OSC message. At
> this point, the pd process is killed but the GUI freezes on the screen,
> and
> the terminal freezes too.
>
> If I launch the first Pd instance from the terminal with '&', and then run
> the script through
> the same terminal, it works fine.
>
> this below is the script. nothing fancy.
>
> any idea why the process doesn't work?
>
> thanksss!
>
>
> \\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
> #!/bin/bash
>
> NEWPATCH=$1
> cp /usr/share/Xth-Sense/Xth-Sense.pd $HOME/Desktop/$NEWPATCH.pd;
> sleep 2;
> pdextended -alsa $HOME/Desktop/$NEWPATCH.pd;
> exit
> \\\\\\\\\\\\\\\\\\
>
>
>
>
> --
> Marco Donnarumma
> New Media + Sonic Arts Practitioner, Performer, Teacher, Director.
> Embodied Audio-Visual Interaction Research Team.
> Department of Computing, Goldsmiths University of London
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> Portfolio: http://marcodonnarumma.com
> Research: http://res.marcodonnarumma.com
> Director: http://www.liveperformersmeeting.net
>
could things like kickstarter be applied to pd? there are quite a few
things i could think of that might get implemented with a few dollar signs
on real paper rather than in message boxes ;-)
so...is it posible? just putting the idea out there if it isn't already
being discussed...