Re: [PD] backwards ead~

2011-06-04 Thread Andy Farnell


[vline~] is versatile :) It can be used to solve many problems
with envelopes. Also, don't be scared to use two vlines if
it makes the problem easier to understand, their good time accuracy
ensures they will do what you expect most times.


On Sat, 4 Jun 2011 01:22:34 +0200
Stephan Elliot Perez dreamoftheshoreofanotherwo...@gmail.com wrote:

 Thanks for your response.  I tried to apply the branching principal using
 the equation from the [exact-ead~] by having the envelope go to 1 and then
 to 2 instead of 0, using min 1 and max 1 to create a branch, using an
 expression to convert the ascending numbers over 1 into descending numbers
 under 1, and then jumping to 0.  I think the problem is that, during the
 switches, two 1s are sent at the same time, leading to a 2 (as seen in the
 graph), where I actually need a 0...
 
 -Stephan
 
 On Mon, May 30, 2011 at 8:34 PM, Andy Farnell 
 padawa...@obiwannabe.co.ukwrote:
 
 
 
 
  You might be able to easily get that behaviour by
  quickly editing the example I gave you.
 
  The maths is really geometry.
 
  There are a few things that can be done as time domain
  transforms when thinking about envelopes and suchlike
  in this way.
 
  1) Flip it around zero with [*~ -1]
  2) Invert arithmetically wrt 1.0 using [sig~ 1][-~]
  3) Get the [min~] or the [max~] wrt another value
  4) Clamp at a value using [clip~] ... is special case of (3)
  5) Shift by an amount using [-~] or [+~]
  6) Scale by some factor with [*~]
 
  IIRC the idiom for a two stage envelope like that is
  to use [min~]/[max~] to create a split point and treat
  each of the two branches differently (you can do piecewise
  waveform construction the same way).
 
  If you want time symmetry then have the [vline~] go to 1.0
  and back to [0.0] and just use one of the branches.
 
 
 
  On Mon, 30 May 2011 18:45:55 +0200
  Stephan Elliot Perez dreamoftheshoreofanotherwo...@gmail.com wrote:
 
   Greetings,
Thank you for your responses.  I tried your suggestion, hardoff, and
   the result is the attached [ead-reverse~].  Unfortunately, the expression
   behaves differently with this [vline~]-construction as with the
  [phasor~].
   Here, if 1 is entered into the right input of [expr~], the result is an
   envelope whose steepness becomes exponentially smaller while ascending
  and
   exponentially greater while descending (if near 0, the opposite form is
   produced and values between 1 and 0 produce a divided, confused form). I
   however wish to produce an envelope that becomes exponentially steeper
  both
   ascending and descending.
My problem with this [expr~] as well as with Mr. Farnell's patches
  is
   that I do not quite understand the math behind them.  Any ideas?
  
   Best regards,
   Stephan Elliot Perez
  
  
   On Fri, May 27, 2011 at 5:54 PM, hard off hard@gmail.com wrote:
  
instead of the [phaser~], send a [line~] (or [vline~]) signal.
   
for example:
   
[1, 0.5 500, 0 1000 500(
|
[vline~]
   
   
like most of my patches, i don't think i originally made that one,
  someone
else posted it, and i just copied.   ;)
must have been a long time ago though, cos i barely remember it.
   
   
   
   
On Sat, May 28, 2011 at 12:24 AM, Stephan Elliot Perez 
dreamoftheshoreofanotherwo...@gmail.com wrote:
   
Greetings,
   I wish to produce a wave form with the opposite form of the
  normal
ead~ wave (the curves become exponentially steeper instead of
  flatter),
which I can achieve by entering a negative number into the phasor in
  hard
off's exact-ead~ patch, which I downloaded from the archive.  However,
  I
still want to be able to independently change the length of the
  ascent,
decline, and distance between waves as is possible with ead~.  Does
  anyone
know how I could do this, or possibly have access to an
  abstraction-version
of ead~?
   
Best regards,
Stephan
   
   
   
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management -
http://lists.puredata.info/listinfo/pd-list
   
   
   
 
 
  --
  Andy Farnell padawa...@obiwannabe.co.uk
 
  ___
  Pd-list@iem.at mailing list
  UNSUBSCRIBE and account-management -
  http://lists.puredata.info/listinfo/pd-list
 


-- 
Andy Farnell padawa...@obiwannabe.co.uk

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


[PD] Concerning the Spiritual in Code

2011-06-04 Thread Pall Thayer
I've created a collection of modules/libraries (including pd
abstractions) that are intended to allow software developers to easily
make their software more spiritual by enabling them to embed the
spirit of Pall Thayer in their code.

The whole thing is open sourced under the GPL and available for download at:

http://pallthayer.dyndns.org/spiritual_code/

-- 
*
Pall Thayer
artist
http://www.this.is/pallit
*

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


[PD] -nogui = no audio

2011-06-04 Thread Peter Sinclair
Hi I just switched from ubuntu 10.04 to mint (which is supposed to be  
more or less the same but lighter), since ubuntu refused to run  
headless on the fit-pc2 which I'm using. I'm running Pd extended  
0.42.5 Everything is fine except that if I run pd with the -nogui  
command the audio gets stuck on startup. Does anyone have any  
experience with this?


Thanks
Peter



Peter Sinclair
petes...@nujus.net
http://petersinclair.org
http://nujus.net
http://locusonus.org






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


Re: [PD] -nogui = no audio

2011-06-04 Thread Pedro Lopes
Have you tried that old technique where you delay the start of the audio a
bit?

like

loadbang
|
delay 2000
|
your dsp toggle.

On Sat, Jun 4, 2011 at 4:20 PM, Peter Sinclair petes...@nujus.net wrote:

 Hi I just switched from ubuntu 10.04 to mint (which is supposed to be more
 or less the same but lighter), since ubuntu refused to run headless on the
 fit-pc2 which I'm using. I'm running Pd extended 0.42.5 Everything is fine
 except that if I run pd with the -nogui command the audio gets stuck on
 startup. Does anyone have any experience with this?

 Thanks
 Peter



 Peter Sinclair
 petes...@nujus.net
 http://petersinclair.org
 http://nujus.net
 http://locusonus.org






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




-- 
Pedro Lopes (HCI Researcher / MSc)
contact: pedro.lo...@ist.utl.pt
website: http://web.ist.utl.pt/Pedro.Lopes /
http://pedrolopesresearch.wordpress.com/ | http://twitter.com/plopesresearch
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] -nogui = no audio

2011-06-04 Thread Pedro Lopes
Then you should definitely try to isolate issues, trying without pulse
audio, gui vs. no-gui, and so forth.

On Sat, Jun 4, 2011 at 5:39 PM, Peter Sinclair petes...@nujus.net wrote:

 I had tried that but, it turns out that it seems to be something to do with
 pulse audio, when I switch it off in startup applications everything seems
 to be fine. I've no idea why it would have anything to do with gui or nogui!

 Thanks for your response
 best
 Peter



 On 4 juin 11, at 18:33, Pedro Lopes wrote:

  Have you tried that old technique where you delay the start of the audio a
 bit?

 like

 loadbang
 |
 delay 2000
 |
 your dsp toggle.

 On Sat, Jun 4, 2011 at 4:20 PM, Peter Sinclair petes...@nujus.net
 wrote:
 Hi I just switched from ubuntu 10.04 to mint (which is supposed to be more
 or less the same but lighter), since ubuntu refused to run headless on the
 fit-pc2 which I'm using. I'm running Pd extended 0.42.5 Everything is fine
 except that if I run pd with the -nogui command the audio gets stuck on
 startup. Does anyone have any experience with this?

 Thanks
 Peter



 Peter Sinclair
 petes...@nujus.net
 http://petersinclair.org
 http://nujus.net
 http://locusonus.org






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



 --
 Pedro Lopes (HCI Researcher / MSc)
 contact: pedro.lo...@ist.utl.pt
 website: http://web.ist.utl.pt/Pedro.Lopes /
 http://pedrolopesresearch.wordpress.com/ |
 http://twitter.com/plopesresearch


 Peter Sinclair
 petes...@nujus.net
 http://petersinclair.org
 http://nujus.net
 http://locusonus.org








-- 
Pedro Lopes (HCI Researcher / MSc)
contact: pedro.lo...@ist.utl.pt
website: http://web.ist.utl.pt/Pedro.Lopes /
http://pedrolopesresearch.wordpress.com/ | http://twitter.com/plopesresearch
___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


[PD] [PD-announce] Raw/Roar - Intermedia dance piece for enhanced bodies - DK

2011-06-04 Thread Marco Donnarumma
(Sorry for any x-posting)

The Danish National School of Theatre and Contemporary Dance
Supported by The Danish Arts Council and Augustinus Fonden
presents:

::: Host Guest Ghost, final event 

Sunday 5th June
11.00 h
Dansehallerne, Copenhagen, DK.

~

HGG is a series of artistic residencies.
The project aim at fostering experimental approaches to dance, theatre and
interactive technologies while forming emerging, talented choreographers and
creatives.

HGG #2 was directed by new media and sonic artist, performer and teacher
Marco Donnarumma.
Together with a team of 6 dancers, 3 musicians and a professional chef, they
developed a new intermedia piece titled Raw/Roar.

The piece will unveil a peculiar, unique world of enhanced bodies,
biophysical sound, augmented music and reactive videos.

Among the different media and technologies explored during the residency,
the main focus was set on the open source-based Xth Sense, developed by
Marco Donnarumma.
Xth Sense is a set biophysical sensors which augment human body by
transducing kinetic energy in sound, music and control data for variable
media.


Project info:
http://www.dansehallerne.dk/side.asp?side=13id=233ver=uk

Xth Sense:
http://res.marcodonnarumma.com

Director's portfolio:
http://marcodonnarumma.com/


Best wishes,


-- 
Marco Donnarumma
Independent New Media and Sonic Arts Professional, Performer, Instructor
ACE, Sound Design MSc by Research (ongoing)
The University of Edinburgh, UK
~
Portfolio: http://marcodonnarumma.com
Lab: http://www.thesaddj.com | http://cntrl.sourceforge.net |
http://www.flxer.net
Event: http://www.liveperformersmeeting.net
___
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


[PD] fluid~ anywhere?

2011-06-04 Thread Jeppi Jeppi

Hi all,I would like to know whether footils/fluid~ (or any equivalent 
samplebank player) is available, specially as a precompiled library both for 
windows and macosx...I see /footils is no longer included in the pd-extended 
distro...(?)
Thanks in advance,Josep M ___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list


Re: [PD] RJDJSceneplayer for Android Xoom

2011-06-04 Thread Hans-Christoph Steiner


Yes, any rjdj scene that works on the iPhone should work on Android  
using the ScenePlayer.  If not, its a bug that should be reported.


.hc

On Jun 3, 2011, at 3:08 PM, Pagano, Patrick wrote:


Hello

I am fooling around with libpd and I seem to have gotten Sceneplayer  
to successfully build and load rjdj scenes
Is it safe to assume that If I create a new  rjdj scene it will be  
loaded and work with Sceneplayer?
--As opposed to the .zip of scenes that are included on the pd-for- 
android site?


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






If nature has made any one thing less susceptible than all others of  
exclusive property, it is the action of the thinking power called an  
idea, which an individual may exclusively possess as long as he keeps  
it to himself; but the moment it is divulged, it forces itself into  
the possession of everyone, and the receiver cannot dispossess himself  
of it.- Thomas Jefferson



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


Re: [PD] Concerning the Spiritual in Code

2011-06-04 Thread Mathieu Bouchard

On Sat, 4 Jun 2011, Pall Thayer wrote:


I've created a collection of modules/libraries (including pd
abstractions) that are intended to allow software developers to easily
make their software more spiritual by enabling them to embed the
spirit of Pall Thayer in their code.

The whole thing is open sourced under the GPL and available for download at:

http://pallthayer.dyndns.org/spiritual_code/


Hello World !

 ___
| Mathieu Bouchard  tél: +1.514.383.3801  Villeray, Montréal, QC___
Pd-list@iem.at mailing list
UNSUBSCRIBE and account-management - 
http://lists.puredata.info/listinfo/pd-list